Author: ICT Byte (ICT Byte)

Home ICT Byte
Post

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 License, BSD license, GNU General Public License, GNU Lesser General Public License, and MIT License• Need and Advantages of Open sources OPEN SOURCE OPERATING SYSTEM:...

Design and Analysis of Algorithms (DAA) – Micro Syllabus
Post

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 Omega and Big Theta Notation, Their Geometrical Interpretation and examples Recurrences Recursive algorithm and recursive relations Solving Recurrences Recursion Tree Method, Substitution Method, Application of...

International  Prepaid Dollar Card in Nepal! Everything you need to know
Post

International Prepaid Dollar Card in Nepal! Everything you need to know

What is International Prepaid Dollar Card? You might have heard that Nepal has no international payment gateway. There was no chance to pay any stuffs from foreign country due to no availability of international payment gateway. To silve this problem, Nepal Rastra Bank issued a circular on March 21, 2021 stating issue of prepaid dollar...

What is encapsulation? Learn encapsulation in JAVA
Post

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 are wrapped together in single unit its like a capsule, which consists of several components in medicines Java Bean is fully encapsulated class Variables /...

Post

Structured Programming Vs Object-Oriented Programming – OOP

Structured Programming  Object Oriented Programming Focuses on process/ logical structure and then data required for that process. Focuses on data. Difficult to modify and reuse Easy to modify and reuse code Also known as Modular Programming and a subset of procedural programming language. Supports inheritance, encapsulation, abstraction, polymorphism, etc. Programs are divided into small self-contained functions. Programs are divided into small entities called objects....

Class and Objects in Java
Post

Class and Objects in Java

Class user-defined blueprint in OOP a common set of properties are represented by class To create a class, you need to use the keyword class Example:Class named “Test” is created belowpublic class Test {int x=17;} Class describes state and behavior Remember, class is blueprint form where individual objects are generated Example Object the basic unit...

What are the major features and important characteristics of JAVA Programming?
Post

What are the major features and important characteristics of JAVA Programming?

JAVA is one of the most popular programming languages. The important and major characteristics of Java that you need to know includes: Object-Oriented Everything in java is object-oriented Java is easy to extend by creating new class Platform Independent In a correctly implemented JAVA system, the same program can run in any device. Java runs...