2 votes
1
How much memory is needed to store addition table of two 8 bit numbers64Kx964Kx864Kx1664Kx18
2 votes
3
W1(A),R2(A),W2(A),W2(B),W1(B)This schedule has WW conflict but not Lost update problem,Please explain why?Is it possible to have WW conflict without lost update?
5 votes
6
What is the time complexibilty of the following code?Assume "statement" takes O(1) time.int x=0; int A(n) { statement; if (n==1) { return 1; } else { x += 4 A(n/2) + n2; ...
1 votes
7
The message 11001001 is to be transmitted using the CRC polynomial x^3 + 1to protect it from errors. The message that should be transmitted is:A. 11001001000B. 1100100101...
6 votes
8
There are $5$ hotels on a road. If $4$ men go into the hotel at $11$ am, then the probability that each go into a different hotel is ______.
2 votes
9
35 votes
10
0 votes
11
What is the complement of Non-Recursive Enumerable Language ?
2 votes
12
Select the lettered pair that has the same relationship as the given pair of words.Symphony : Music (A) Mural : Painting (B) Ode : Prose (C) Preface : Book (D) Editor...
0 votes
13
number of distinct binary tree,that can be created by 5 nodes(distinct)
9 votes
14
Two csma/cd stations are trying to send frames..After each frame is sent they contend for channel using backoff exponential algorithm?What is probability that contention ...
9 votes
16
The Boolean expression $A \oplus B \oplus A$ is equivalent to$AB + \overline {A}\;\;\overline B$$\overline{A}\;B+A\;\overline{B}$$B$$\overline{A}$
0 votes
17
0 votes
18
All functions have file scope. Thus, you cannot define a function within a function. This is why C is not technically a block-structured language.Explain pls ?