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

Each record consists of a

Question # 2

Redundancy means

Question # 3

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

Question # 4

______ are used to move around the window if its contents do not fit on screen

Question # 5

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

Question # 6

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

Question # 7

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

Question # 8

A loop with in a loop is called:

Question # 9

This loop is a good choice when you know how many times you want the loop to iterate in advance of entering the loop?

Question # 10

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;

Question # 11

Which of the following loop is available in C language?

Question # 12

The body of for loop with single statement ends with:

Question # 13

A for statement contains three expressions: Initialization, test and:

Question # 14

If n=3, what will be the value of n after executing the following code?
do
n*=2
while (n<48);

Question # 15

Which of the following statement can be used in C

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

  • R
    Rajab Ali Ali 04 - Jul - 2024 00 Min 24 Sec 15/15
  • 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
  • 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 When is while loop more appropriate then for loop?
A. The terminating condition occurs unexpectedly
B. The body of loop will be executed at least once
C. The program will be executed at least once
D. The number times the loop will be executed is known before the loop executes
2 One execution of a loop is known as a(n):
A. Cycle
B. Duration
C. Iteration
D. Test
3 A for statement contains three expressions: Initialization, test and:
A. Assignment
B. Validation
C. Increment / decrement
D. All
4 This statement causes a loop to terminate early?
A. Break
B. Terminate
C. Exit
D. A and B
5 The body of for loop with single statement ends with:
A. Right bracket ]
B. Right brace }
C. Comma ,
D. Semi colon ;
6 A loop with in a loop is called:
A. Nested loop
B. Complex loop
C. Infinite loop
D. Dual loop
7 Which of the following statement can be used in C
A. While
B. For
C. Do while
D. All
8 In a for statement, this expression is executed only once:
A. Test
B. Validation
C. Initialization
D. All
9 This means to increase a value by one:
A. Modulus
B. Increment
C. Decrement
D. Inc
10 This loop is a good choice when you know how many times you want the loop to iterate in advance of entering the loop?
A. While
B. Do-while
C. For
D. Nested

Test Questions

Is this page helpful?