Friday 20 November 2015

IBPS IT SO-Operating system-Semaphores – 1

Semaphores – 1

1) An un-interruptible unit is known as :
a) single
b) atomic
c) static
d) None of these
Answer: b
Explanation: None.
2) The TestAndSet instruction is executed :
a) after a particular process
b) periodically
c) atomically
d) None of these
Answer: c
Explanation: None.
3) Semaphore is a/an _______ to solve the critical section problem.
a) hardware for a system
b) special program for a system
c) integer variable
d) None of these
Answer: c
Explanation: None.
4) The two atomic operations permissible on semaphores are : (choose two)
a) wait
b) stop
c) hold
d) signal
Answer: a and d
Explanation: None.
5) Spinlocks are :
a) CPU cycles wasting locks over critical sections of programs
b) locks that avoid time wastage in context switches
c) locks that work better on multiprocessor systems
d) All of these
Answer: d
Explanation: None.
6) The main disadvantage of spinlocks is that :
a) they are not sufficient for many process
b) they require
 busy waiting
c) they are unreliable sometimes
d) they are too complex for programmers
Answer: b
Explanation: None.

7) The wait operation of the semaphore basically works on the basic _______ system call.
a) stop()
b) block()
c) hold()
d) wait()
Answer: b
Explanation: None.
8) The signal operation of the semaphore basically works on the basic _______ system call.
a) continue()
b) wakeup()
c) getup()
d) start()
Answer: b
Explanation: None.
9) If the semaphore value is negative :
a) its magnitude is the number of processes waiting on that semaphore
b) it is invalid
c) no operation can be further performed on it until the signal operation is performed on it
d) None of these
Answer: a
Explanation: None.
10) The code that changes the value of the semaphore is :
a) remainder section code
b) non – critical section code
c) critical section code
d) None of these
Answer: c
Explanation: None.
11) The following program consists of 3 concurrent processes and 3 binary semaphores. The semaphores are initialized as S0 = 1, S1 = 0, S2 = 0.
Process P0
while(true)
{
wait(S0);
print
 ‘0’;
release(S1);
release(S2);
}
Process P1
wait(S1);
release(S0);
Process P2
wait(S2);
release(S0);

How many times will P0 print ‘0’ ?
a) At least twice
b) Exactly twice
c) Exactly thrice
d) Exactly once
Answer: a
Explanation: None.
12) Each process Pi, i = 0,1,2,3,……,9 is coded as follows :
repeat
P(mutex)
{Critical Section}
V(mutex)
forever
The code for P10 is identical except that it uses V(mutex) instead of P(mutex). What is the largest number of processes that can be inside the critical section at any moment (the mutex being initialized to 1)?
a) 1
b) 2
c) 3
d) None of these
Answer: c
Explanation: Any one of the 9 processes can get into critical section after executing P(mutex) which decrements the mutex value to 0. At this time P10 can enter critical section by incrementing the value to 1. Now any of the 9 processes can enter the critical section by again decrementing the mutex value to 0. None of the remaining processes can get into their critical sections.
13) Two processes, P1 and P2, need to access a critical section of code. Consider the following synchronization construct used by the processes :
Process P1 :
while(true)
{
w1 = true;
while(w2 == true);
Critical section
w1 = false;
}
Remainder Section
Process P2 :
while(true)
{
w2 = true;
while(w1 == true);
Critical section
w2 = false;
}
Remainder Section
Here, w1 and w2 are shared variables, which are initialized to false. Which one of the following statements is TRUE about the above construct?
a) It does not ensure mutual exclusion
b) It does not ensure bounded waiting
c) It requires that processes enter the critical section in strict
 alternation
d) It does not prevent deadlocks, but ensures mutual exclusion
Answer: d
Explanation: None.

No comments:

Post a Comment