Process Scheduling
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…
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…
What is Array? A normal variable can hold a single value at a time. Say for example if we declare a variable of integer type, it can store any single integer valueRead More…
Process and Process State: In this article, we are going to discuss about process, process state diagram and process control block (PCB). A process is a program which is currently in execution.Read More…
Static Data Member (Class variable): Static Data member has the following properties: It is initialized by zero when first object of class is created. Only one copy of static data member isRead More…
Similar to passing primary data-type variables, we can also pass object as argument to the function. Objects can be passed by two methods: Call by value: In this method a copy ofRead More…