Solutions for Class 10 ICSE Logix Kips Computer Applications with BlueJ Java | IT Developer <?php echo $page_title; ?>
IT Developer

Iterative Constructs in Java

Chapter 9

Iterative Constructs in Java

Class 10 - Logix Kips ICSE Computer Applications with BlueJ


Share with a Friend

State whether the given statements are True or False


Question 1

The while loop is an exit-controlled loop.
False

Question 2

To execute a do-while loop, the condition must be true in the beginning.
False

Question 3

The while part of a do-while statement must be terminated by a semicolon.
True

Question 4

All types of loops in Java (for, while, and do-while) can be infinite loops.
True

Question 5

The continue statement terminates the current loop and then continues from the statement immediately following the current loop.
False

Question 6

The return statement is a jump statement.
True

Question 7

The for loop may contain multiple initialisations and updates.
True

Question 8

A loop that never terminates is called an empty loop.
False

Question 9

The do-while loop executes at least once even if the condition is false.
True

Question 10

The do-while loop is an exit-controlled loop.
True

Question 11

An infinite loop can be constructed using a while loop only.
False

Question 12

The statements that facilitate unconditional transfer of control are called jump statements.
True