1 votes
0 answers
1121
02. Match the pairs in the following questions by writing the corresponding letters only.
51 votes
4 answers
1123
The maximum number of possible edges in an undirected graph with $n$ vertices and $k$ components is ______.
19 votes
3 answers
1124
If the longest chain in a partial order is of length $n$, then the partial order can be written as a _____ of $n$ antichains.
16 votes
1 answer
1125
A given set of processes can be implemented by using only parbegin/parend statement, if the precedence graph of these processes is ______
33 votes
8 answers
1126
Consider the following recursive definition of $fib$:fib(n) := if n = 0 then 1 else if n = 1 then 1 else fib(n-1) + fib(n-2)The number of times $fib$ is called (includin...
44 votes
2 answers
1127
The weighted external path length of the binary tree in figure is ______
50 votes
3 answers
1128
The minimum number of comparisons required to sort $5$ elements is ______
24 votes
3 answers
1129
Consider the following PASCAL program segment:if i mod 2 = 0 then while i >= 0 do begin i := i div 2; if i mod 2 < 0 then i := i - 1; else i := i – 2; end;An appropria...
38 votes
1 answer
1130
When two $4$-bit numbers $A = a_3a_2a_1a_0$ and $B=b_3b_2b_1b_0$ are multiplied, the bit $c_1$ of the product $C$ is given by ________
20 votes
5 answers
1131
If the binary tree in figure is traversed in inorder, then the order in which the nodes will be visited is ______
0 votes
3 answers
1132
Using the 8087 arithmetic coprocessor with the 8086 CPU requires that the 8086 CPU is operated ............
26 votes
5 answers
1133
Consider the number given by the decimal expression:$$16^3*9 + 16^2*7 + 16*5+3$$The number of $1’s$ in the unsigned binary representation of the number is ______
2 votes
2 answers
1134
In interleaved memory organization, consecutive words are stored in consecutive memory modules in _______ interleaving, whereas consecutive words are stored within the mo...
42 votes
10 answers
1136