Author: ICT Byte

Masters of Computer Science, Open Source Technology

Linux Vs Windows! Differences you need to know!

LINUX WINDOWS Users have access to source code Access of source code is not available to users Highly customizable Less customization option GPL License – free to modify and redistribute …...

Read More

Masters of Computer Science, Open Source Technology

UNIX Vs Linux! What are the differences?

UNIX LINUX Source code is not available to public Source code is available to general public Used for servers, workstations and high end computers Used for personal computer, game development …...

Read More

Masters of Computer Science, Open Source Technology

Features and Advantages of Linux

Features and Advantages of Linux Open Source Code easily available Can customize OS Contribute, moify, distribute, enhance Security Less vulnerable Applications needs to be admin authorized No antivirus required Free …...

Read More

Masters of Computer Science, Open Source Technology

Need and Advantages of Open Source

Advantages of Open Source The cost of hardware is less as Linux and os are portable with higher compressible using less hardware power than other operating systems The quality of …...

Read More

Masters of Computer Science, Open Source Technology

Open Source Softwares and Principle of Open Source

If there is something that can be modiefied and is shareable, then it can be termed as opens source. Open source is designed in such a way that it can …...

Read More

Masters of Computer Science, Object Oriented Programming

How Constructor in JAVA works? Learn with a simple example

Constructor Special method to initialize the object When object of the class is created, constructor is called Can be used to set initial value of attribute in object Constructor is …...

Read More

Masters of Computer Science, Open Source Technology

History of Open Source Initiative (OSI)

History of Open Source Initiative (OSI) 1983: Richard Stallman launched GNU project to write OS with free use if source code 1985: Stallman published GNU Manifesto 1989: First vesion of …...

Read More

Masters of Computer Science, Open Source Technology

Commands for Files and Directory Handling in Linux

Commands for Files and Directory Handling in Linux Cd To change directory E.g cd / we are moving to root directory Cd.. Takes one level up of directory E.g cd.. …...

Read More

Design and Analysis of Algorithm, Masters of Computer Science

Solving Recurrences using Iteration Method

Iteration  Method Expand the relation so that summation dependent on n is obtained Bound the summation Example T(n)=2T(n/2)+1 T(1)=1 Solution: T(n)=2T(n/2)+1 Let there is k iteration. So, for the first …...

Read More

Design and Analysis of Algorithm, Masters of Computer Science

Recurrence Relations | Solving Recurrence Relation to find Complexity

Recursive Algorithm It can be solved in terms of itself Recurrence relation defines sequenced based on rule those next terms as a function of previous terms. Next term is function …...

Read More
Close