Operating System 2024
Group B
AI is thinking...
Attempt any SIX questions. [6 * 5 = 30]
AI is thinking...
What is PCB? What are different information that are included in a PCB?
AI is thinking...
How paging can be used for memory management? Also differentiate it with segmentation.
AI is thinking...
What are page faults and thrashing? Explain demand paging with protection bit?
AI is thinking...
How deadlock can be prevented ? Explain in detail?
AI is thinking...
Explain different file access methods in detail.
AI is thinking...
What is distributed system? Explain the role of clock synchronization in distributed system.
AI is thinking...
Group C
AI is thinking...
Attempt any TWO questions. [2 * 10 = 20]
AI is thinking...
What is critical section problem? How semaphores can be used to solve critical section problem.Also explain producer consumer problem with its solution using Mutex.
AI is thinking...
What is belady's Anomaly in page replacement Algorithm? Explain with example. Consider the following page reference string: 7,2,3,1,2,5,3,4,6,7,7,1,0,5,4,6,2,3,0,1. How many page faults will occur if the program has four page frames available to it and uses the following page replacement algorithm? a)FIFO replacement b) LRU replacement c) Optimal replacement
AI is thinking...
What is the use of DMA controller? Consider the following process and answer the following questions.
Process | Allocation | Max | Available |
[A,B,C,D] | [A,B,C,D] | {A,B,C,D] | |
P0 | 0 0 1 2 | 0 0 1 2 | 1 5 2 0 |
P1 | 1 0 0 0 | 1 7 5 0 | |
P2 | 1 3 5 4 | 2 3 5 6 | |
P3 | 0 6 3 2 | 0 6 5 2 | |
P4 | 0 0 1 4 | 0 6 5 6 |
a) What is the content of need matrix?
b) Is the system in safe state?
c) If P2 request (3 4 0 2) , can the request be granted immediately.
AI is thinking...
Define Kernel. Explain different types of kernel in operating system.
AI is thinking...