0 answers
2
1 answer
3
0 answers
4
Let A and B are the largest and second largest numbers respectively in IEEE Double precision format as shown below(Implicit Normalization).1(sign)11(exponent)52(mantissa)...
1 answer
6
2 answers
7
Can set of terminal be empty in a grammar? Is epsilon (null string) counted as a terminal symbol?
1 answer
8
Need some clarification regarding this answer Do comment please:
2 answers
9
int fun(int n){int table={0,1,2,1,2,2,3,1,2,2,3,2,3,3,4};int count =0;for(;n;n>>4)count=count + table[n & oxf];return(count);}what will fun() return?1.returns no.of 0's i...
1 answer
13
2 answers
14
2 answers
16
How to construct NFA with even number of a's and even no of b's??
2 answers
17
draw dfa w | w is any string not in (ab+)* ?
1 answer
19
Draw the state transition of a deterministic finite state automaton which accepts all strings from the alphabet {a,b}, such that every string ending with five b's.
1 answer
20
2 answers
21
What will be the output of Natural join if there is(are) common attribute(s) in two relations but no Common value in these common attribute(s) ?For example Table RAB9769T...
2 answers
22
P->(Q->P) IS EQUIVALENT TO ~P->(P->Q) WITHOUT USING TRUTH TABLE
1 answer
23
What will be the output of Natural Join if there is(are) common attribute(s) in two relations but no common value in these common attribute(s) ?for exampleTable RAB6971Ta...
1 answer
24
Does kleen positive closure of (€ + a +b) contains € ?€= epsilon
2 answers
25
Q15 I am having confusion regarding indirect bit(mode bit) .Are mode bit used in deciding number of operations possible?
2 answers
26
Is there any priority in which order Undo and Redo operations will be performed in case of transaction failure? Do We perform all undos first and then all redos?