12th Class ICS Computer Science Chapter 12 Online MCQ Test for (Loop Constructs)

ICS Part 2 Computer Science Online
Chapter 12 Test

Start Chapter 12 Test

MCQ's Test For Chapter 0 "ICS Part 2 Computer Science Chapter 12 Online Test"

Try The MCQ's Test For Chapter 0 "ICS Part 2 Computer Science Chapter 12 Online Test"

  • Total Questions15

  • Time Allowed20

ICS Part 2 Computer Science Chapter 12 Online Test

00:00
Question # 1

The keyword used to come out of the body of loop is

Question # 2

In a for statement, this expression is executed only once:

Question # 3

This statement causes a loop to terminate early?

Question # 4

In which loop the condition comes before the body of the loop?

Question # 5

This statement may be used to stop a loop's current iteration and begin once:

Question # 6

A ________ is used to perform the same sequence of steps or automating tasks repeatedly

Question # 7

The body of for loop with single statement ends with:

Question # 8

This means to increase a value by one:

Question # 9

One execution of a loop is known as a(n):

Question # 10

________ contains icon button that are shortcuts to the commands in the menu

Question # 11

Which statement is used to move the control to the start of loop body?

Question # 12

This is a control structure that causes a statement or group of statement to repeat:

Question # 13

What is the value of "a" after the execution of the following code?
int a 25;
for(int c=0; c<4;c++)
a=a-1;
a=1+3;

Question # 14

______ are used to enter data into databases

Question # 15

The loop which never ends is called:

Prepare Complete Set Wise Chapter 0 "ICS Part 2 Computer Science Chapter 12 Online Test" MCQs Online With Answers


Topic Test

00:00
12th Chapter

ICS Part 2 Computer Science Chapter 12 Online Test MCQ's

Top Scorers Of Chapter 0 "ICS Part 2 Computer Science Chapter 12 Online Test" MCQ`s Test

  • N
    Noreenjaved Javed 16 - Jan - 2025 02 Min 16 Sec 15/15
  • A
    Ayesha Javed 26 - Oct - 2024 02 Min 30 Sec 15/15
  • M
    Memona Zaka 20 - Dec - 2024 02 Min 31 Sec 15/15
  • S
    Shanza- Shabbir. 14 - Nov - 2024 03 Min 00 Sec 15/15
  • T
    Tariq Rahi 15 - Dec - 2024 02 Min 30 Sec 14/15
  • W
    Waheed Asghar 08 - Dec - 2024 02 Min 32 Sec 14/15
  • A
    Amber Ilyas 24 - Oct - 2024 02 Min 47 Sec 14/15
  • U
    uswa arshad 18 - Nov - 2024 03 Min 57 Sec 14/15
  • Z
    zahra noor 07 - Dec - 2025 03 Min 18 Sec 13/15
  • M
    Manahil Rafique 17 - Sep - 2024 03 Min 26 Sec 13/15
  • A
    Areeha Waheed 07 - Jul - 2024 04 Min 04 Sec 13/15
  • K
    khadija jafar 29 - Dec - 2024 08 Min 48 Sec 13/15
  • T
    Tech Design 26 - Feb - 2026 01 Min 30 Sec 12/15
  • M
    mueez farhan 18 - Sep - 2024 02 Min 17 Sec 12/15
  • I
    Iman 15 - Dec - 2024 02 Min 27 Sec 12/15

ICS Part II Computer Science Chapter 0 Important MCQ's

Sr.# Question Answer
1 Semicolon is placed at the end of condition in:
A. While loop
B. Do-while loop
C. For loop
D. All
2 Which of the following loop is available in C language?
A. While
B. Do-while
C. For
D. All
3 Which loop structure always executes at least once?
A. Do-while
B. For
C. While
D. All
4 In which loop the condition comes after the body of the loop?
A. While loop
B. Do-while loop
C. For loop
D. B and C
5 This statement causes a loop to terminate early?
A. Break
B. Terminate
C. Exit
D. A and B
6 The keyword 'break' cannot be used within:
A. Do-while
B. If-else
C. For
D. While
7 What is the final value of x after executing the following code:
For (int x=0; x<10; X++)
A. 10
B. 9
C. 0
D. 1
8 What is the value of "a" after execution the following code segment:
int a=2;
int b=0;
while(b<5)
{ a=a*2;
b=b+1;
}
a=a+1;
A. 64
B. 65
C. 66
D. 67
9 The loop structure in which condition comes after the body of the loop is
A. While
B. Do-while
C. For
D. All
10 Which of the following loop is called counter loop?
A. For
B. While
C. Do-while
D. All

Test Questions

Is this page helpful?