Topics
Operating System
- Introduction to Operating System (OS)
- Idea of an Operating System
- Windows NT
- LINUX
- File Systems and Its types
- File Operations
- Access Methods and its types
- Allocation Methods
- Concepts Related to Process Management
- Concepts related to memory management
- Basics of Graphical User Interface (GUI)
- Access and Security Aspects of O.S.
Data Structures
C++ Programming
- Introduction to C++ Programming
- Idea Behind Object-Orientated Programming
- Object-orientated programming approach
- Object-Oriented Terms and Concepts
- Classes and Objects
- Constructors and Destructors
- Functions in C + +
- Arrays in C++
- Pointers in C++
- References in C++
- Strings in C++
- Inheritance
- Virtual functions and polymorphism
- Friends in C++
- Operator overloading and type conversions
- Files and Stream
HyperTex Markup Language (HTML)
- Introduction to OOP
- Objects and Class
- Inheritance and Polymorphism
Principles of Object Oriented Programming
The procedural approach does not model real world problems very well. In object oriented programming (OOP), programme is designed around the data being operated upon rather than functions. It ties data more closely to functions that operate on it. It allows to break down our programmes into a number of entities called objects.
Features of OOP are:
- Emphasis is on data rather than procedure.
- Programs are divided into objects.
- Every object has its own data and functions.
- The data of object can be accessed by the functions associated with that object.
- New data & functions can be easily added whenever necessary.
- Follows bottom up approach in program design.
Objects & Classes
Objects are basic run-time entities in object-oriented systems.
Objects contain data and code for manipulating that data. A class can be used to convert an object's whole set of data and code into a user-defined data type. Objects are variables of the type class. Once a class has been defined, we can construct any number of objects within that class.
Inheritance & Polymorphism
Inheritance is a process by which we can build new classes from the old ones. The new class, referred to as a derived class, can inherit the data structures and functions of the original class (base class).
Polymorphism means the ability to take more than one form. Due to polymorphism, a single function name can handle different numbers and types of arguments.