Web Page

System calls, Processes, Threads, Inter‐process communication, Concurrency and synchronization. Deadlock. CPU scheduling. Memory management and Virtual memory. File systems. Disks is also under this

$$\scriptsize{\overset{{\large{\textbf{Mark Distribution in Previous GATE}}}}{\begin{array}{|c|c|c|c|c|c|c|c|}\hline
\textbf{Year}& \textbf{2022} & \textbf{2021-1}&\textbf{2021-2}&\textbf{2020}&\textbf{2019}&\textbf{2018}&\textbf{2017-1}&\textbf{2017-2}&\textbf{2016-1}&\textbf{2016-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 2 &4&2&2&2&3&2&2&1&1&1&2.1&4
\\\hline\textbf{2 Marks Count} & 4 &1&3&4&4&3&2&2&4&3&1&3&4
\\\hline\textbf{Total Marks} & 10 &6&8&10&10&9&6&6&9&7&\bf{6}&\bf{8.1}&\bf{10}\\\hline
\end{array}}}$$

Recent questions in Operating System

1 votes
1 answer
4581
Why is the overhead in paging equal to average overhead caused by page size which is P/2, P is the size of Page ?
1 votes
3 answers
4583
If we are given PAGE SIZE=4KB, PAGE TABLE ENTRY SIZE=4B OUTER PAGE TABLE SIZE=4KB and levels of Paging=3 ,so how to go about calculating the virtual address space .
1 votes
1 answer
4585
1 votes
1 answer
4587
is it easy to port threaded code ?a) trueb) false
1 votes
1 answer
4589
1 votes
2 answers
4591
1 votes
1 answer
4592
If a process on the system could issue an I/O request then the process will be placed on which of the following ?a)Ready Stateb) Running statec) ready queued) I/o queue
1 votes
2 answers
4593
for (int i = 0; i<4; i++) { fork(); }What is no of child nodes at each level ?
1 votes
1 answer
4594
main( ){ if (fork( ) == 0){ /* Child */while (1){ for (i=0; i
1 votes
1 answer
4595
Which one of the following is allowed only in kernel mode?A) Read the time of day clockB) Save the status of processC) change the PC content.D) non of these
6 votes
1 answer
4596
1 votes
2 answers
4597
Which of the following are true about of paging ?1) It divide the memory into units of equal size2)It permits implementation  of  virtual memory3)It suffers from Intern...
1 votes
2 answers
4598
Just wanted to know that if none of the needs of a process is met so can we directly say that it is unsafe state as well as will lead to deadlock since none of the needs ...