7 votes
32
Consider the equivalence relation R induced by the partition P={{1},{3},{2,4,5,6}} of set A={1,2,3,4,5,6}.The number of ordered pairs in R is ____
2 votes
36
How to calculate the sizeof(arr2)?
2 votes
37
Every unambiguous grammar is LR(0) grammar?
5 votes
39
int main(){ float f=0.7; if(f==0.7) printf("equal"); else printf("not equal"); return 0;} ...
7 votes
40
4 votes
41
The time required to determine the minimum element from the max heap of size O(log(n)) is given by
3 votes
43
2 votes
44
Heap allocation is required for languages.that support recursionthat support dynamic data structurethat use dynamic scope rulesNone of the above
3 votes
45
number of 3 state dfa with designated initial stat can be constructed over the alphabet {0,1,2} with exactly 2 final states is a)3^8b)3^9c)3^10d)3^11
5 votes
46
What is the minimum number of students, each of whom comes from one of the 50 states, who must be enrolled in a university to guarantee that there are at least 100 who co...
4 votes
47
which formula to use in master theorm
3 votes
48
The transitive closure of the relation $\left\{(1, 2), (2, 3), (3, 4), (5, 4)\right\}$ on the set $\left\{1, 2, 3, 4, 5\right\}$ is ___________.
0 votes
49
What is the maximum number of edges in an acyclic undirected graph with $n$ vertices?$n-1$$n$$n+1$$2n-1$
2 votes
51
2 votes
53
Which of the following algorithm solve the all-pair shortest path problem?Dijakstra’s algorithmFloyd’s algorithmPrim’s algorithmWarshall’s algorithm
2 votes
55
3 votes
59
What value would the following function return for the input $x=95$?Function fun (x:integer):integer; Begin If x 100 then fun = x – 10 Else fun = fun(fun (x+11)) End;$...