0 answers
1
please describe in detail I have no idea how to find rank of the node?
1 answer
2
1.Suppose A=1/2,B=-1/2,C-7,D=3.1 then what is the value of (|_A_|-|-b-|+|_C_|*|-D-|)/C? A)3 B)4 C)5 D)0 link:-http://www.wbcsc.org.in/wbcsc/PDFQuestionPaper_2015/SET15-Co...
0 answers
3
Which one is TRUE? Give explaination1)The main reason to have multilevel page to speed up address translation2)The main reason to have hardware TLB to speed up address tr...
1 answer
4
Base condition T(n) = 1Otherwise T(n) = T(n-1) +n Then After solving i got to this step ...how should i generalize nowT(n) = T( n-k) + n-(k-1) + n-(k-2)+n
1 answer
6
Kindly explain this problem. Thank you in advance.
2 answers
7
min no. of tables ?(participation of dependent is total)
2 answers
8
How many distinct binary tree can be formed with three distinct keys?Please help me to find the correct answer?
1 answer
9
1 answer
10
main(){int a;scanf("%i"&a);printf("%i %d",a,a);scanf("%d",&a);printf("%i %d",a,a);}suppose user entered 0101 as input .what is printed by above program?
1 answer
11
1 answer
12
1 answer
13
main(){int a;scanf("%i"&a);printf("%i %d",a,a);scanf("%d",&a);printf("%i %d",a,a);}suppose user entered 0x56 as input .what is printed by above program?
1 answer
14
char a[]="gateoverflow";char *p="gateoverflow";Why even though both are same way if representing string .By second way we cannot change the value???
5 answers
15
consider the following grammar$E\rightarrow int|int+E|int-E |int-(E) |int*E$Which statement is true?a) Grammer is left factoredb) Cant be determined
0 answers
17
T(n) =$\log$n + T($\sqrt{n}$)How to solve this?
2 answers
19
2 answers
20
4 answers
22
What is the output of the code? #include <stdio.h int main() { int a; printf("%d",scanf("%d",&a)); return 0; }$10$$9$$-1$An undefined behavior
2 answers
23
Worst case and best case space complexity of merge sort is ___________________________
1 answer
26
What is the difference between Physical Address, Virtual Address and Absolute Address?