0 votes
0 answers
1
The minimum number of JK flip flops required to construct a synchronous counter that counts the sequence (0,0,1,1,2,2,3,3,0,0,...) is _____How to approach these type of q...
1 votes
0 answers
2
Please explain why 127 is taken in numerator instead of 7?
1 votes
0 answers
5
An entrepreneur needs to assign 5 different tasks to three of his employees. If every employee is assigned atleast 1 task, how many ways can the entrepreneur assign those...
0 votes
0 answers
8
Which all sorting algorithms are there for gate ?
0 votes
1 answer
10
#include<stdio.h int main() { int i=4, j=8; printf("%d, %d, %d\n", i|j&j|i, i|j&j|i, i^j); return 0; }Please tell the approach.Ans is 12 12 12
9 votes
2 answers
11
Q) For each of the following C statements state whether they contain lexical error, syntax error, semantic error or no error(along with reason) -i) inta radius =5;ii) x=1...
1 votes
0 answers
12
In a class C address 3 bits are borrowed for subnetting of host id part. Total number of possible subnet masks are ?Ans is 42, but according to me answer should be 8C3 =...
2 votes
1 answer
13
What are the differences between strong LL(k) parsing and LL(k) parsing?
2 votes
1 answer
14
How to check in the grammar that which parsing method works more efficient for it?For eg in the following grammar -S- Aa/bS->aOptions -a) Top - Downb) Bottom - upc) Bothd...