1. What is the output of the program #include<conio.h> #include<stdio.h> void main() { int i,j=20; clrscr(); for(i=1;i<3;i++) { printf(“%d,”,i); continue; printf(“%d”,j); break; } getch(); } // A. 1,20 // B. 1,20,1,20 // c. 1,2 // D. 1,2,20,20 Ans: c 2. What is the output of the program #include<conio.h> #include<stdio.h> void main() { char *st1[3]= {“Hello”,”World”,”Oracle”}; *st1=st1[2]; st1[1]=*st1; free(st1[0]); free(st1[1]); clrscr(); printf(“%s %s %s”,st1,st1[1],st1[2]); getch(); } // A. Garbage Garbage Oracle // B. oracle oracle oracle // C. Hello World Oracle // D. Core Dump:cannot Print after freeing the memory Ans: D 3. It takes 8, 12 and 16 days for A,B and C resp. to complete a task. How many days will it...