
II-112 Programming Concepts
7. Which key you will use to terminate the infinite loop?
(a) Ctrl+Alt+Del (b) Ctrl+Break (c) Ctrl+Enter
8. Which of the following keyword you will apply to exit from the loop without increasing program
code?
(a) Continue (b) Break (c) Goto
9. Which of the following is the infinite loop?
(a) for(;;) (b) while (condition) (c) None of the above
10. The role of continue with loop is, it takes .
(a) Next iteration (b) Reduced iteration (c) None of the above
11. What will be the value of x after the execution of the following program?
#include <stdio.h>
#include <conio.h>
void main()
{
int k;
float x=1;
clrscr();
for (k ...