Recent questions tagged isro2008

5 votes
7 answers
61
Dynamic address translationis part of the operating system paging algorithmis useless when swapping is usedis the hardware necessary to implement pagingstorage pages at a...
3 votes
2 answers
62
Thrashingalways occurs on large computersis a natural consequence of virtual memory systemscan always be avoided by swappingcan be caused by poor paging algorithms
10 votes
3 answers
63
In which of the following four necessary conditions for deadlock processes claim exclusive control of the resources they require?no preemptionmutual exclusioncircular wai...
10 votes
4 answers
64
Which of the following class of statement usually produces no executable code when compiled?declarationassignment statementsinput and output statementsstructural statemen...
2 votes
5 answers
65
The minimum number of fields with each node of doubly linked list is1234
23 votes
1 answer
68
34 votes
3 answers
71
Dirty bit for a page in a page tablehelps avoid unnecessary writes on a paging devicehelps maintain LRU informationallows only read on a pageNone of the above
26 votes
3 answers
73
In a resident – OS computer, which of the following systems must reside in the main memory under all situations?AssemblerLinkerLoaderCompiler
25 votes
2 answers
74
Which one of the following algorithm design techniques is used in finding all pairs of shortest distances in a graph?Dynamic programmingBacktrackingGreedyDivide and Conqu...
23 votes
6 answers
75
Raid configurations of the disks are used to provideFault-tolerance High speedHigh data density(A) & (B)
28 votes
3 answers
76
Consider the following C function:int f(int n) { static int i = 1; if(n >= 5) return n; n = n+i; i++; return f(n); }The value returned by $f(1)$ is:$5$$6$$7$$8$
29 votes
3 answers
77
39 votes
8 answers
78
44 votes
5 answers
79
41 votes
6 answers
80
Which of the following need not necessarily be saved on a context switch between processes?General purpose registersTranslation look-aside bufferProgram counterAll of the...