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 |
What is uint8 in c?
what is the difference between 123 and 0123 in c?
write a programme to convert temperature from farenheit to celcius?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
main() { printf(5+"Vidyarthi Computers"); }
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
What is sizeof array?
Can you think of a way when a program crashed before reaching main? If yes how?
player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion
C passes By value or By reference?
5 Answers Geometric Software, Infosys,