Back to the 2022 paper
Similar questions
Operating SystemA process executes the following segment of code: ``c for (i = 1; i <= n; i++) fork(); `` The number of new processes created is: (i) n (ii) (n(n+1))/2 (iii) 2^n - 1 (iv) 2^n20222mOperating SystemWrite a program using "fork" to demonstrate the parent-child relationship of processes.20237mOPERATING SYSTEMFork is used to (i) dispatch a task (ii) create a new job (iii) create a new process (iv) increase the priority of a task20232mOperating SystemA process is: (i) program in high level language kept on disk (ii) content of main memory (iii) program in execution (iv) job in secondary memory20222m