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 |
How can I invoke another program or command and trap its output?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
write a program to display reverse of a number using for loop?
What are the types of i/o functions?
Difference between linking and loading?
Why do we use static in c?
what is ram?
What do you mean by recursion in c?
How can you find out how much memory is available?
c program to subtract between two numbers without using '-' sign and subtract function.
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
What are global variables?