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 HTML
- HTML Documentation
- Basics of HTML Tags
- Font Tags in HTML
- Formatting Text in HTML
- Lists in HTML
- Dealing with URLs
- Tables in HTML
- Images in HTML
- Links in HTML
- HTML Scripts
- Introduction to Sorting
- Bubble Sorting
Sorting
Sorting is a process of arranging the data items in ascending or descending order. To arrange the elements in ascending or descending order in array or list or for any data structure various sorting algorithms are used.
a) Sorting by selection b) Bubble sorting c) Shell sorting d) Heap sorting
Bubble sorting
Given a list A[1], A[2], ..., A[N], compare and arrange adjacent elements to ensure A[i] < A[i+1]. Repeat, reducing comparisons by one each time, until the list is sorted. After N-1 steps the list will be sorted in increasing order.
If you would like to contribute notes or other learning material, please submit them using the button below.