MEDIUMImportant2021GATE-CSOperating Systems
operating-systemssystem-calls1-mark
A.
B.
C.
D.
Correct Answer: A,C
Explanation:
Loading...
Correct Answer: A,C
Explanation:
Take your GATE-CS preparation to the next level. Practice with full-length mock tests, get instant results, and track your progress with detailed analytics.
Browse GATE-CS Test Seriesint x = 3; while(x > 0) { fork(); printf("hello"); wait(NULL); x--; }The total nu…
Which one or more of the following options guarantee that a computer system will transition from use…
#include <unistd.h> int main() { int i; for (i=0; i<10; i++) if (i%2 == 0) …