0 answers
1
(i)An ICMP message is generated if IP datagram header is corrupted(ii) No ICMP message is generated if IP address in data link frame is broadcast or multicast address.Bot...
1 answer
5
Let T be a B-tree of order m and height h. if n is the number of key elements in T then the maximum value of n is(m-1)h-1(m-1)h-1+1Mh-1Mh+1+1
3 answers
6
If (65)x = (52)y, then what is the minimum value of x+y ?
2 answers
10
Consider the following scheduleS : r1(A) w2(A) r3(A) w4(A) r5(A) w6(A)The number of schedules equal to given schedule(s) which not conflict equal to schedule(s) are _____...
1 answer
11
Consider the following schedule :S::r1(A),r3(D),w1(B),r2(B),r4(B),w2(C),r5(C),w4(E),r5(E),w5(B)The number of serial schedules which are view equal to schedule (S) _______...
1 answer
12
How much memory is needed to store addition table of two 8 bit numbers64Kx964Kx864Kx1664Kx18
5 answers
13
State True or False with reasonLogical data independence is easier to achieve than physical data independence.
8 answers
14
What is the logical translation of the following statement?"None of my friends are perfect."$∃x(F (x)∧ ¬P(x))$$∃ x(¬ F (x)∧ P(x))$$ ∃x(¬F (x)∧¬P(x))$$ ¬�...
11 answers
17
8 answers
19
The average number of key comparisons required for a successful search for sequential search on $n$ items is$\frac{n}{2}$$\frac{n-1}{2}$$\frac{n+1}{2}$None of the above
2 answers
21
Given a binary tree of the following form and having $n$ nodes, the height of the tree is$\Theta \left(\log n\right)$$\Theta \left(n\right)$$\Theta \left(\sqrt{n}\right)$...
8 answers
24
3 answers
28
Which one of the following is a top-down parser?Recursive descent parser.Operator precedence parser.An LR(k) parser.An LALR(k) parser.