MEDIUMImportant2023GATE-CSOperating Systems
operating-systemssystem-calls1-mark
A.
B.
C.
D.
Correct Answer: C,D
Explanation:
Loading...
Correct Answer: C,D
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 of the following standard C library functions will always invoke a system call when executed f…
#include <unistd.h> int main() { int i; for (i=0; i<10; i++) if (i%2 == 0) …