0 votes
1
0 votes
3
Number of relations $S$ over set $\{0,1,2,3 \}$ such that $(x,y) \in S \Rightarrow x = y$
2 votes
4
1 votes
6
The output of a sequential circuit depends on present inputs onlypast inputs onlyboth present and past inputspresent outputs only
0 votes
8
In a simple connected undirected graph with n nodes(where n≧2), The maximum number of nodes with distinct degrees is n-1n-2n-32
1 votes
10
0 votes
11
Consider a B+ tree in which the maximum number of keys in a Internal node is 5 and maximum number of keys in a leaf node is 4. What is the minimum number of keys in any n...
2 votes
12
2 votes
14
among primary index, secondary index, clustered index which index are dense or sparse or both?
0 votes
15
int i = 0 ;main( ){printf ( "\nmain's i = %d", i ) ;i++ ;val( ) ;printf ( "\nmain's i = %d", i ) ;val( ) ;}val( ){i = 100 ;printf ( "\nval's i = %d", i ) ;i++ ;}
0 votes
16
Is it static declaration or static assignment?int main() { int x=20; static int y=x; if(x==y) printf("Equal"); else printf("Not Equal"); return 0; }What is output?and why...