Author: ICT Byte (ICT Byte)

Home ICT Byte
Post

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 Microsoft’s License, can’t be modified and redistribute by users More command lines for daily uses More GUI than command lines Community Support Microsoft Support Users...

Post

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 Free to use No license required GNU GPL License Lightweight Requirement to run linux are low end 128 MB RAM / disk space device can...

How Constructor in JAVA works? Learn with a simple example
Post

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 public But in java we can create public, private, protected constructor Private constructor : within a class   Example: public class ConstructorDemo {     int...

History of Open Source Initiative (OSI)
Post

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 GNU General Public License published 1991: OSI formed in 1998 as an educational, advocacy organization Term “open source” was coined at session on 3rd February,...

Post

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 of pervious terms. Defined by itself (in term of previous terms) Can model the cpmplexity of divide and conquer algorithm Solving Recurrence Relations To define...