Discuss similarities and differences of Multiprogramming OS
and multiprocessing OS?
Answers were Sorted based on User's Feedback
Answer / sadasiva
in multiprogramming number of processes running on single
processor.And in multiprocessing number of processes are
running on multiple processors
| Is This Answer Correct ? | 22 Yes | 2 No |
Answer / zarna padia
in multiprogramming single processor can perform all the
preocess and in multiprocessing there is more than one
processor to achieve its performance
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / krishnendu pal
multiprogramming has a single process.
multiprocessing has a multiple process.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / pavan
in multi programming different programs are run under single
processor where as in multi processing one processor can
handle different users with the help of different processes
| Is This Answer Correct ? | 3 Yes | 2 No |
Write a program which returns the first non repetitive character in the string?
write a program to copy the string using switch case?
Why can arithmetic operations not be performed on void pointers?
Why should I prototype a function?
What are the 4 types of unions?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
what is the difference between exit() and _exit() functions?
Do character constants represent numerical values?
Juxtapose the use of override with new. What is shadowing?
without a terminator how can we print a message in a printf () function.
What is the difference between typeof(foo) and myFoo.GetType()?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV