Discuss similarities and differences of Multiprogramming OS
and multiprocessing OS?
Answer Posted / krishnendu pal
multiprogramming has a single process.
multiprocessing has a multiple process.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What the different types of arrays in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is union in c?
Why is extern used in c?
What are identifiers c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is data type long in c?
How to set file pointer to beginning c?
What does void main () mean?
How pointers are declared?
Can we access array using pointer in c language?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is storage class?
What is the difference between void main and main in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555