2 answers
3
Find the area bounded by the lines $3x + 2y=14, 2x - 3y = 5$ in the first quadrant.$14.95$$15.25$$15.70$$20.35$
3 answers
4
Assume that the following jobs are to be executed on a single processor system$$\begin{array}{|c|c|} \hline \textbf{Job Id} & \textbf{CPU Burst Time} \\\hline \text{p} ...
2 answers
5
How to attempt Gate exam ?
10 answers
9
2 answers
10
1 answer
11
2 answers
12
Consider the following orders of transactions:T2:R(x); T3:W(x); T3:commit; T1:W(x); T1:commit; T2:R(y); T2:W(z); T2:commit; T4:R(x); T4:R(y); T4:commit.If S is serializab...
6 answers
13
If a process is in unsafe state, then:(a) It is in deadlock (b) It might successfully complete(c) It will lead to deadlock (d) None of the above
2 answers
14
Of the following sorting algorithms, which has a running time that is least dependent on the initial ordering of the input?Mege SortInsertion SortSelection SortQuick Sort...
7 answers
15
Consider the following instructions.$I_1:R_1=100$$I_2:R_1=R_2+R_4$$I_3:R_2=R_4+25$$I_4:R_4=R_1+R_3$$I_5:R_1=R_1+30$Calculate sum of ($\text{WAR, RAW and WAW}$) dependenci...
2 answers
20
If $x y 1,$ which of the following must be true$?$$\ln x \ln y$$e^{x} e^{y} $$y^x x^y $$\cos x \cos y$(i) and (ii)(i) and (iii)(iii) and (iv)(ii) and (iv)
4 answers
22
Does C perform array out of bound checking? What is the output of the following program?int main() { int i; int arr[5] = {0}; for (i = 0; i <= 5; i++) printf("%d ", arr[i...
0 answers
23
Caption
1 answer
24
A Sorted array of n elements contains 0 and 1 to find out majority of 0 and 1.How much time it will take???and please explain Meaning -majority of 0 and 1??
2 answers
26
how many Synthesized attributes are present in the given Syntax directed Definition?(Answer key says only 2 Synthesized attributes are present. How to find them? Any idea...
0 answers
27
Consider the following grammar G:The grammar G isA. LL (1) grammar and not LR (0)B. LL (1) and LR (0)C. Not LL (1) but LR (0)D. Neither LL (1) nor LR (0)Here B should be ...
1 answer
28