Demoralization is done toA. Check for Data IntegrityB. Reduce Data RedundancyC. Introduce Security CheckD. Increase Query performance
Void main(){struct a{char ch[10];char *str;};struct a s1={"Hyderabad","Bangalore"};printf("n%c%c",s1.ch[0],*s1.str);printf("n%s%s",s1.ch,s1.str);getch();}
HB, HyderabadBangalore
Main(int argc,int *argv[]){int i;for(i=1;i I work for oracle
Void main(){int i,j,k;for(i=0;i<3;i++)k=sum(i,i);printf("n%d",k);getch();}sum(s,t){static int m;m+=s+t;return m;}
6
Void main(){int i;clrscr();for(i=1;i<6;++i)switch(i){case 1:case 2: printf("%d,",i++);break;case 3: continue;case 4: printf("%d,",i);}printf("%d",i);getch();}
1; 4; 6
Which of the storage class(es) becomes the global variables for the entire programA. ExternB. StaticC. AutoD. Register
A
What is the output of the programvoid main(){char s[]="oracle is the best";char t[40];char *ss,*tt;while(*tt++=*ss++);printf("%s",t);getch();}A. Oracle is the bestB. Core dumpC. Error MessageD. Goes into infinite loop
B
What is the output of the program?void main(){int j[10]={9,7,5,3,1,2,4,6,9};int i=1;clrscr();for(;i<9;i++)printf("%d ",--j[i++]);getch();}A. 6,2,1,5B. 6,2,1,5,7C. Error MessageD. core dump
A
What is the output of the programvoid main(){int i,j,k,n=5;clrscr();for(i=5;i>0;i--){j=1
B
Which of the following storage class(es) became the global variable for the entire programA. ExternB. StaticC. AutoD. Register
A
View page << Previous 1 [2] 3 4 Next >>

Go Top