More Classes
5th Class
6th Class
7th Class
8th Class
9th Class
10th Class
11th Class
12th Class
NAT I
NAT II
CSS
IQ
General Knowledge
MDCAT
ECAT
GAT General
GAT Subject
Other Links
Go to Home
Online Tests
ECAT Computer Science Chapter 11 Loops Online Test MCQs With Answers
Question # 1
Where should be the loop control variable initialized?
Choose an answer
Before the loop starts
In the first statement of the loop body
In the last statement of the loop body
Anywhere in the loop body
Previous
Skip
Next
Question # 2
A loop within a loop Is called
Choose an answer
Nested loop
Complex loop
Infinite loop
Dual loop
Previous
Skip
Next
Question # 3
When is for loop more appropriate than while loop?
Choose an answer
The terminating condition occurs unexpectedly
The body of loop will be executed at leas once
The program will be executed at least once
The number of times the loop will be executed is known before the loop executes
Previous
Skip
Next
Question # 4
When does the code block following while (x<100) execute?
Choose an answer
When x is less than one hundred
When x is greater than hundred
When x is equal to hundred
None
Previous
Skip
Next
Question # 5
Which statement causes a loop to terminate early?
Choose an answer
Break
Terminate
Exit
A and B
Previous
Skip
Next
Question # 6
This is a control structured that causes a statement or group of statements to repeat:
Choose an answer
Decision statement
Loop
Sequential
Logical
Previous
Skip
Next
Question # 7
Which loop,structure always executes at least once?
Choose an answer
Do-while
For
While
All
Previous
Skip
Next
Question # 8
Which of the following loop is available In C language?
Choose an answer
While
Do-while
For
All
Previous
Skip
Next
Question # 9
While loop is also called:
Choose an answer
Conditional loop
Wend loop
Counter loop
Continuous loop
Previous
Skip
Next
Question # 10
This is a control structure that causes a statement or arouo of statements to repeat
Choose an answer
Decision statement
Loop
Sequential
Logical
Previous
Skip
Next
Question # 11
Which of the following loop is called as counter loop?
Choose an answer
For
While
Do while
All
Previous
Skip
Next
Question # 12
This means to increase a value by one:
Choose an answer
Modulus
Increment
Decrement
Inc
Previous
Skip
Next
Question # 13
Which of the following loop is available in C language?
Choose an answer
While
Do while
For
All
Previous
Skip
Next
Question # 14
Which statement is used to move the control to the start of loop body?
Choose an answer
Continue
Break
Switch
Go to
Previous
Skip
Next
Question # 15
Which statement is used to move the control to the start of loop body?
Choose an answer
Continue
Break
Switch
Go to
Previous
Skip
Next
Question # 16
Which loop, condition comes before the body of loop?
Choose an answer
While loop
Do-while loop
For loop
B and C
Previous
Skip
Next
Back