ISRO Scientist or Engineer Computer Science 2015

Instructions

For the following questions answer them individually

Question 31

If there are 32 segments, each size 1 k bytes, then the logical address should have

Video Solution
Question 32

In a lottery scheduler with 40 tickets, how we will distribute the tickets among 4 processes P1, P2, P3 and P4 such that each process gets 10%, 5%, 60% and 25% respectively?

Video Solution
Question 33

Suppose a system contains n processes and system uses the round-robin algorithm for CPU scheduling then which data structure is best suited ready queue of the processes

Video Solution
Question 34

A hard disk system has the following parameters:
Numberoftrack = 500
$$\frac{Numberof sectors}{track}$$ = 100
$$\frac{Numberof bytes}{sector}$$ = 500
Time taken by the head to move from one track to adjacent track = 1 ms
Rotation speed = 600 rpm
Whatis the average time taken for transferring 250 bytes from the disk?

Video Solution
Question 35

At a particular time of computation the value of a counting semaphore is 7. Then 20 P operations and 15 V operation were completed on this semaphore. The resulting value of the semaphore is

Video Solution
Question 36

Increasing the RAM of a computer typically improves performance because

Video Solution
Question 37

Consider the following program ~
main( )
{
fork() ;
fork() ;
fork() ;
}
How many new processes will be created?

Video Solution
Question 38

Suppose two jobs, each of which needs 10 min of CPU time, start simultaneously. Assume 50% $$\frac{I}{O}$$ wait time.
How long will it take for both to complete if they run sequentially?

Video Solution
Question 39

If a node has K children in B tree, then the node contains exactly .................... keys.

Video Solution
Question 40

The time complexity of the following C function is (assume n > Q):
int recursive (int n) {
if (n == 1)
return (1);
else
return (recursive (n -1) + recursive (n -1));
}

Video Solution
cracku

Boost your Prep!

Download App