saqib
Computer systems have four parts Hardware Software Data User  Hardware Mechanical devices in the computer, Anything that can be […]
History of Computer Older computers were analog Represent data as variable points along a continuous spectrum of values, More flexible […]
Array List and its Operations Array Same type of elements at contiguous location Same name and type To refer to […]
C++ Revision and example This lab teaches you the following topics: Basic syntax of C++ Data types and operators in […]
Introduction to Computer Systems Computers are everywhere What is computer? Black Box Problem Solver An Electronic device that converts data […]
Information Technology (IT) Information technology (IT) involves the utilization of computer systems and devices to acquire information, and it plays […]
C++ code for binary search using loop #include<iostream> #include<conio.h> using namespace std; void main() { int arry[10]; int item; int […]
Quick Sort Quick Sort : Based on Divide and Conquer paradigm. One of the fastest in-memory sorting algorithms (if not […]
Merge Sort Divide and conquer approach Merging is process of combining two sorted files into a third sorted file Given […]