0 votes
1 answer
1
What is Port number for TCP,UDP,IGMP,ICMP ?this might be silly question but still wants some little discussion.
0 votes
1 answer
5
$\text{What is three address code representation of this ?}$-a+b|c^d^e*f|g
0 votes
2 answers
6
Why not Output is showing 90? #include <stdio.h int main() { extern int p; printf("%d ", p); { int p = 90; printf("%d ", p); } }
1 votes
2 answers
7
#include<stdio.h int main(void) { int p = 1; int q = 0; q = p++ + p++; printf("%d %d",p,q); return 0; }Output is Showing $3,3$ How ?
0 votes
1 answer
8
$G: S\rightarrow SbS\mid a$Grammars are ambiguous True/False.
0 votes
1 answer
9
What is Subset Problem in computation?
1 votes
1 answer
10
What is Subset Problem in Theory of computation?
2 votes
1 answer
11
1 votes
1 answer
12
How many clock pulses are required for giving input and taking the output of n bit Serial-in-serial-out-shift-register?
2 votes
2 answers
13
All Conflict serializable schedule are also view serializable but reverse is not true . True or False
3 votes
0 answers
14
What is Time Complexity of 4T ( n /2 ) + n / logn ?