0 votes
2
Which normal form is considered adequate for normal relational database design?$2NF$$5NF$$4NF$$3NF$
0 votes
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
1 votes
5
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...
0 votes
6
How many different trees are there with four nodes $\text{A, B, C}$ and $\text{D}?$$30$$60$$90$$120$
3 votes
7
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...
0 votes
8
Find the minimum no of tables requires for representing the above relational model? 
5 votes
9
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
0 votes
11
0 votes
12
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