1 votes
1
0 votes
7
Is it possible in general to have two primary indices on the same relation for different search keys ? Explain your answer.
4 votes
9
In segmented paging, is the paging applied on segment table or on segments?
0 votes
11
Please let me know the best book for software engineering .....
0 votes
12
1 votes
13
How 14? I am not able to understand. Why not 30.
0 votes
14
0 votes
16
https://gateoverflow.in/?qa=blob&qa_blobid=3125601105330416900
0 votes
17
4 votes
18
1 votes
19
3 votes
20
WHAT IS THE OUTPUT OF THE FOLLOWING CODE? printf("%d",printf("ABC"));IS IT ABC3
2 votes
21
1 votes
22
The running time of an algorithm is given by T(n)=T(n-1)+T(n-2)-T(n-3), ifn>3 =n, otherwiseThe order of this algorithm isa)nb)log nc)n^nd)n^2 explain !
2 votes
23
The number of DFA with four states that can be constructed over alphabet {a,b} with designated initial state are 2^n then value of n is .....
2 votes
24
#include <stdio.h struct p { unsigned int x : 1; unsigned int y : 1; };int main() { struct p p; p.x = 1; p.y = 2; printf("%d\n", p.y); } Why output is 0?
0 votes
26
tokens passed to macros are treated as int, float or string?
1 votes
27
2 votes
28
Find time complexity of below Program?A(n){if(n<=1) return;elsereturn $A(\sqrt{n})$ ;}