1 votes
0 answers
81
From huffmann encoding how will we find max and min number of comparisons? what will be the max and min comparisons here
2 votes
1 answer
82
N log (N2)N1.5which will grow faster
1 votes
1 answer
83
Let a language L be defined over a character set L= (a,b,c,d,e) . The probabilities of the characters are in the order 1/2LL=1,5 respectively for each character , the ave...
2 votes
1 answer
84
Cosider n distinct integers , it is required to determine 3 smallest integers of this array by comparisons.The number of comparisons needed are1.n+ O(logn)2.n+O(1)3.O(n)4...
1 votes
1 answer
86
Consider the following functions for large values on nf(n) = n1/root(logn)g(n)=root(logn)h(n)=n1/1001.g(n)<f(n)<h(n)2.g(n)<h(n)<f(n)
1 votes
1 answer
87
3 votes
1 answer
89
Is operator precedence parser the only parser that accepts left recursive grammar?
1 votes
1 answer
90
For a fixed baud rate , manchester communication bits twice as fast as NRZtrue or falsewith explanation please :)
2 votes
1 answer
91
2 processors M1 and M2 implement the same instruction set.Processor 1 uses 5 staged pipeline and uses clock cycle of 10micro sec.Processor M2 uses a 7 staged pipeline and...
4 votes
1 answer
92
void foo(int *); main() { int x=30 , *a=&x; foo(a++); } void foo(int *a) { printf("%d", *a); }
2 votes
1 answer
93
1 votes
1 answer
94
abcdef / nullAssume the above is a singly linked listfirst is pointing to awhat will be the output after thisstruct node *p;p = first->link->link->link;p->link->link=firs...
1 votes
0 answers
95
NUmber of ways in which the numbers 10,20,30,40,50,60,70 can be inserted in an empty binary search tree such that the resulting tree has height 6. Height of tree with sin...
1 votes
0 answers
96
in floating point representation we represent exponent as2E-biashow is this bias value found?some places we use 8 , 16 , 64 etc