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 the advantages of using Unions?
Can you define which header file to include at compile time?
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
write a program for fibonaci series by using while loop in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
how to set Nth bit of variable by using MACRO
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Explain the difference between getch() and getche() in c?
write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 Answers Bosch, College School Exams Tests,
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.