Context Switch
What is Context Switch? When the processor moves from one process to another process, it is called context switch. The CPU will be deallocated from the old process and the new processRead More…
What is Context Switch? When the processor moves from one process to another process, it is called context switch. The CPU will be deallocated from the old process and the new processRead More…
Arrays of string can be represented using the two dimension character array. An array having two subscripts is known as two-dimension array. Two-dimensional array is a collection of rows and columns soRead More…
A String is an array of character. We can easily represent a string using one dimension array. Similar to an array of integer that allows storing collection of integer values, we canRead More…
A process transfers between various scheduling queues throughout its lifetime. The operating system must select a process from these queues in some order for scheduling purposes. The selection process is done byRead More…
Multi-programming environment provides maximum CPU utilization by executing multiple processes simultaneously. When process enters in the system, they are put into a job queue. The queue consists of all processes in theRead More…
Destructor is a special member function of a class, which is used to destroy the object. Like a constructor, it has same name as of class name, but it is preceded byRead More…
A class is defined with the goal of creating user defined data type, which is similar to build-in-data-type. Built-in data type variables can be initialized at the time of declaration but weRead More…
An array having more than two subscripts is known as multi-dimensional array. It can be represented as a series of two-dimension arrays. Declaration of Multi-Dimension Array: We can declare Multi-dimension array usingRead More…
Since India PM has declared official ban on two biggest Indian note of Rs.1000 and Rs.500 for destruction of black money from the midnight of 8th November, 2016 people are trying toRead More…
In our previous article of Introduction to array, we had discussed about Single or One-Dimension array. In this article, we will continue our discussion on arrays by focusing on Two-Dimension array (2D-Arrays).Read More…