8 answers
2
Which normal form is considered adequate for normal relational database design?$2NF$$5NF$$4NF$$3NF$
8 answers
4
If n has 3, then the statement a[++n]=n++;assigns 3 to a[5]assigns 4 to a[5]assigns 4 to a[4]what is assigned is compiler dependent
2 answers
5
#define int charmain(){int i=66;printf("%d",sizeof(i));}
3 answers
6
what is the output of the following c code?#include<stdio.h void main() { int index; for(index=1;index<=5;index++) { printf("%d",index); if(index==3) continue; } }a)1245b...
9 answers
7
How many different trees are there with four nodes $\text{A, B, C}$ and $\text{D}?$$30$$60$$90$$120$
3 answers
9
Which of the following is NOT represented in a subroutine's activation record frame for a stack-based programming language?Values of local variablesReturn addressHeap are...
2 answers
10
Find the minimum no of tables requires for representing the above relational model? 
3 answers
11
A box contains 10 screws, 3 of which are defective.Two screws are drawn at random with replacement.The probability that none of the two screws is defective will be
3 answers
13
5 answers
14
void myfunc(int X){ if(X 0) myfunc( X ); printf("%d", X); } int main(){ myfunc(5); return 0; }0,0,1,2,3,44,3,2,1,04,3,2,1,0,00,1,2,3,4