Masters of Computer Science

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

Masters of Computer Science, Open Source Technology

Open Source Technology – Syllabus

INTRODUCTION TO OPEN SOURCE • Open source definition and principles• History, Open Source Initiative• Open Source Standards, Methodologies, Philosophy• Free source and open source system• Open source licensing systemo Apache …...

Read More

Design and Analysis of Algorithm, Masters of Computer Science

Design and Analysis of Algorithms (DAA) – Micro Syllabus

Foundation of Algorithm Analysis Algorith and its properties RAM Model Time and Space Complexity Detail Analysis of Algorithm (Like Factorial Algorithm) Concept of Aggregate Analysis Asymptotic Notation Big Oh, Big …...

Read More

Masters of Computer Science, Object Oriented Programming

Constructor in JAVA.

Learn every details of Constructor in JAVA

Read More

Masters of Computer Science, Object Oriented Programming

What is encapsulation? Learn encapsulation in JAVA

Introduction of Encapsulation Besides inheritance, polymorphism and abstraction, encapsulation is one of fundamental OOP concept. mechanism of wrapping up data under single unit this is process ehere code and data …...

Read More
Close