0 answers
2
Schedules are not view equivalent because of not having similar UPDATE READ ?
0 answers
4
Consider the following grammar G:S->AB|dA->aA|bB->bB|c The grammar G isA LL (1) grammar and not LR (0)B LL (1) and LR (0)C Not LL (1) but LR (0) /*correct answer*/D Neith...
0 answers
6
Shouldn't the answer be 1 because it can be implemented using minimum 1 HA and 4 FA.and maximum with 9 HA.But the answer is 9.
0 answers
9
0 answers
11
What is the output of this code in c?int main(){static int a[] [3]={0,1,2,3,4,5,6,7,8,9,10,11,12};int i=-1;int d;d=a[i++][++i][++i]; printf("%d",d); return 0;} how did 2 ...
1 answer
12
show that given any 52 integer there exist two of them whose sum,or else whose difference ,is divisible by 100
1 answer
13
The octal representation of an integer is (342)8. If this were to be treated as an eight-bit signed integer in 2's complement representation, its decimal equivalent is __...
3 answers
14
An ideal sort is an in-place-sort whose additional space requirement isO (log$_2$ n)O (nlog$_2$ n)O (1)O (n)
1 answer
15
hi how to prepare for gate
1 answer
19
1 answer
20
When the inheritance is private, the private methods in base class are _____ in the derived class (in C++)inaccessible accessibleprotectedpublic
0 answers
21
Packets are being transmitted using GB5 and here every 4th packet is lost.How many packets need to be transmitted to transmit 10 packets?
1 answer
22
IP Address=118.35.42.0 subnet mask=255.255.32.0find no. of valid host addresses.
2 answers
23
1 answer
24
Please give references and any example to understand it well .And give formula to find out CPI .
4 answers
25
How dual and complement different from each other
1 answer
26
3 answers
28
Suppose the first step in binary search algorithm is changed to M = (9L+R)/10, we know that the complexity of binary search is log(n). What will be the complexity of modi...
1 answer
29
An unambiguous grammar has same leftmost and rightmost derivation.True or Falseand how??
0 answers
30
Ques. S Aa/bAc/dc A d Isn't this grammar Ambiguous?If First(S) has more than one production giving the same first value, isn't it ambiguous?