Process Concepts and Cpu Scheduling · Operating Systems · GATE CSE

Start Practice

Marks 1

GATE CSE 2023
Which one or more of the following CPU scheduling algorithms can potentially cause starvation?
GATE CSE 2022
Consider four processes P, Q, R and S scheduled on a CPU as per round robin algorithm with a time quantum of 4 units. The processes arrive in the orde...
GATE CSE 2020
Consider the following statements about process state transitions for a system using preemptive scheduling. I. A running process can move to ready sta...
GATE CSE 2019
The following C program is executed on a Unix/Linux system: #include < unistd.h > int main () { ...
GATE CSE 2016 Set 1
Consider an arbitrary set of $$CPU$$-bound processes with unequal $$CPU$$ burst lengths submitted at the same time to a computer system. Which one of ...
GATE CSE 2015 Set 3
The maximum number of processes that can be in $$Ready$$ state for a computer system with $$n$$ $$CPUs$$ is
GATE CSE 2014 Set 1
Which one of the following is FALSE?
GATE CSE 2013
A scheduling algorithm assigns priority proportional to the waiting time of a process. Every process starts with priority zero (the lowest priority). ...
GATE CSE 2012
A process executes the code fork $$\left( {\,\,\,} \right);$$ fork $$\left( {\,\,\,} \right);$$ fork $$\left( {\,\,\,} \right);$$ The total number of...
GATE CSE 2011
A Computer handles several interrupt sources of which the following are relevant for this question: $$ * \,\,\,$$ Interrupt from $$CPU$$ temperature s...
GATE CSE 2011
Let the time taken to switch between user and kernel modes of execution be $${t_1}$$ while the time taken to switch between two processes be $${t_2}$$...
GATE CSE 2011
A thread is usually defined as a ''light weight process'' because an operating system $$(OS)$$ maintains smaller data structures for a thread than for...
GATE CSE 2010
Which of the following statements are true? $${\rm I}.$$ Shortest remaining time first scheduling may cause starvation $${\rm II}.$$ Preemptive schedu...
GATE CSE 2009
A CPU generally handles an interrupt by executing an interrupt service routine
GATE CSE 2007
Group-1 contains some $$CPU$$ scheduling algorithms and Group-2 contains some applications. Match entries in Group-1 to entries in Group-2. Group-1 (P...
GATE CSE 2007
Consider the following statements about user level threads and kernel level threads. Which one of the following statements is FALSE?
GATE CSE 2006
Consider three $$CPU$$-intensive process, which require $$10,20$$ and $$30$$ time units and arrive at times $$0,2$$ and $$6$$ respectively. How many c...
GATE CSE 2004
Consider the following statements with respect to user-level threads and kernel-supported threads. i) Context switch is faster with kernel- supported...
GATE CSE 2002
Which of the following scheduling algorithms is non-preemptive?
GATE CSE 2001
A CPU has two modes-privileged and non-privileged. In order to change the mode from privileged to non-privileged
GATE CSE 2001
A processor needs software interrupt to
GATE CSE 2001
Consider a set of $$n$$ tasks with known runtimes $${r_1},{r_2},.....\,{r_n}\,\,$$ to be run on a uniprocessor machine. Which of the following process...
GATE CSE 1999
System calls are usually invoked by using:
GATE CSE 1998
Which of the following is an example of spooled device?
GATE CSE 1998
Consider $$n$$ processes sharing the $$CPU$$ in a round-robin fashion. Assuming that each process switch takes $$s$$ seconds, what must be the quantum...
GATE CSE 1996
The process state transition diagram in Figure is representative of ...
GATE CSE 1996
Which of the following is an example of spooled device?
GATE CSE 1995
Which scheduling policy is most suitable for a time-shared operating systems?

Marks 2

GATE CSE 2021 Set 1
Which of the following standard C library functions will always invoke a system call when executed from a single-threaded process in a UNIX/Linux oper...
GATE CSE 2020
Consider the following set of processes, assumed to have arrived at time 0. Consider the CPU scheduling algorithms Shortest Job First (SJF) and Round ...
GATE CSE 2019
Consider the following four processes with arrival times (in milliseconds) and their length of CPU bursts (in milliseconds) as shown below : These pr...
GATE CSE 2016 Set 2
Consider the following processes, with the arrival time and the length of the CPU burst given in milliseconds. The scheduling algorithm used is preemp...
GATE CSE 2015 Set 1
Consider a uniprocessor system executing three tasks T1, T2 and T3, each of which is composed of an infinite sequence of jobs (or instances) which arr...
GATE CSE 2015 Set 3
For the processes listed in the following table, which of the following scheduling schemes will give the lowest average turnaround time? .tg {borde...
GATE CSE 2014 Set 1
Consider the following set of processes that need to be scheduled on a single $$CPU.$$ All the times are given in milliseconds. .tg {border-collap...
GATE CSE 2014 Set 3
An operating system uses $$shortest$$ $$remaining$$ $$time$$ $$first$$ scheduling algorithm for pre-emptive scheduling of processes. Consider the foll...
GATE CSE 2014 Set 2
Three processes $$A, B$$ and $$C$$ each execute a loop of $$100$$ iterations. In each iteration of the loop, a process performs a single computation t...
GATE CSE 2012
Consider the $$3$$ processes, $$P1,$$ $$P2$$ and $$P3$$ shown in the table. .tg {border-collapse:collapse;border-spacing:0;} .tg td{font-family:Ari...
GATE CSE 2011
Consider the following table of arrival time and burst time for three processes $$P0,P1$$ and $$P2$$. .tg {border-collapse:collapse;border-spacing:0...
GATE CSE 2009
In the following process state transition diagram for a uniprocessor system, assume that there are always some processes in the ready state: Now cons...
GATE CSE 2008
A process executes the following code for (i = 0; i < n; i + +) fork ( ); The total number of child processes created is...
GATE CSE 2008
Which of the following is/are true of the auto-increment addressing mode? $${\rm I}.\,\,\,$$ It is useful in creating self-relocating code $${\rm II}....
GATE CSE 2007
An operating system uses Shortest Remaining Time first $$(SRT)$$ process scheduling algorithm. Consider the arrival times and execution times for the ...
GATE CSE 2006
Consider three processes (process id $$0,1,2,$$ respectively) with compute time bursts $$2, 4,$$ and $$8$$ time units. All processes arrive at time ze...
GATE CSE 2006
Consider three processes, all arriving at time zero, with total execution time of $$10,20,$$ and $$30$$ units, respectively. Each process spends the f...
GATE CSE 2005
Consider the following code fragment: if (fork() == 0) { a = a + 5; printf("%d, %d \n", a, &a); } else { a = a - 5; printf ("%d, %d \...
GATE CSE 2004
Consider the following set of processes, with the arrival times and the $$CPU$$-burst times given in milliseconds. What is the average turnaround t...
GATE CSE 2003
A uni-processor computer system only has two processes, both of which alternate $$10$$ $$ms$$ $$CPU$$ bursts with $$90$$ $$ms$$ $${\rm I}/O$$ bursts. ...
GATE CSE 2002
Draw the process state transition diagram of an $$OS$$ in which (i) each process is in one of the five states: created, ready, running, blocked (i.e....
GATE CSE 2002
Which combination of the following features will suffice to characterize an $$OS$$ as a multi-programmed $$OS?$$ $$(a).$$ More than one program may be...
GATE CSE 2001
Which of the following does not interrupt a running process?
GATE CSE 1999
A multi-user, multi-processing operating system cannot be implemented on hardware that does not support:
GATE CSE 1999
Which of the following actions is/are typically not performed by the operating system when switching context from process $$A$$ to process $$B$$ ?
GATE CSE 1998
Four jobs are waiting to be run. Their expected run times are $$6, 3, 5$$ and $$x$$. $${\rm I}$$n what order should they be run to minimize the averag...
GATE CSE 1996
Four jobs to be executed on a single processor system arrive at time $${0^ + }$$ in the order $$A, B, C, D.$$ their burst $$CPU$$ time requirements a...
GATE CSE 1995
The sequence $$.........$$ is an optimal non-preemptive scheduling sequence for the following jobs which leaves the $$CPU$$ idle for $$..........$$ Un...
GATE CSE 1993
The details of an interrupt cycle are shown in Figure Given that an interrupt input arrives every $$1$$ $$msec,$$ what is the percentage of the tota...
GATE CSE 1993
Assume that the following jobs are to be executed on a single processor system. .tg {border-collapse:collapse;border-spacing:0;} .tg td{font-family...
GATE CSE 1992
Which of the following is an example of a spooled device?
GATE CSE 1990
The highest-response ratio next scheduling policy favours $$.......$$ jobs, but it also limits the waiting time of $$ .....$$ jobs.
GATE CSE 1988
State an undesirable characteristic of each of the following criteria for measuring performance of an operating system: (a) Turn around time. (b) ...
EXAM MAP
Medical
NEET
Graduate Aptitude Test in Engineering
GATE CSEGATE ECEGATE EEGATE MEGATE CEGATE PIGATE IN
CBSE
Class 12