Recent posts tagged iit-interviews

61
L2 is surely regular and I would choose L1 to be non-regular. Is the answer correct?
62
$(C012.25)_H - (10111001110.101)_B $$= 1100\;0000\;0001\;0010.\;0010\;0101$$- 0000\;0101\;1100\;1110.\;1010\;0000$$= 1011\;1010\;0100\;0011.\;1000\;0101$$= 1\;011\;101\;0...
63
SLR paper is more powerful than LALR . False .LALR parser is more powerful than Canonical LR parser . False .Canonical LR parser is more powerful than LALR parser. True.T...
64
How query 2 will not produce the correct result?I am getting the desired result from query 2.
65
Instead of finding a function 'f' for the first MUX (in terms of z,x and y) and the second MUX (in terms of f , x and y), we can logically find out the answer.We can put ...
67
Later I got another idea to solve it A' + AB',apply distributive property, that comes to(A'+A)(A'+B') = A'+B'
68
Solution 48: spills to m/m while execution of program how many times m/m will be hit, we have 2 regitersProgram Execution c = a + b; R2 <- R1 + R2 d = c * a; [m/m spill] ...
69
Time without pipeline $=6 \text{ stages}=6 \text{ cycles}$Time with pipeline $=1+\text{stall freqency}\times \text{stall cycle}$ $=1+.25\times 2$ $=1.5$Speed up $=\dfrac{...
70
(c) Every finite subset of a regular set is regular this is falseexample:a^n b^n from regular set (a+b)* is not regular
71
Level order traversal of a rooted tree can be done by starting from the root and performingpreorder traversalin-order traversaldepth first searchbreadth first search