A loop that never ends is known as
Finite loop
Infinite loop
Exit loop
End loop
What will be the output produced by following code: for (int i = 10; i < = 50; i + = 10) { j = i/2; cout < < j < < " ; }
10 20 30 40 50
5 10 15 20 25
10 15 20 25 30
5 15 25 35 45
The statement that allow a set of instruction to be performed repeatedly are called
Control statements
Iteration statements
Conditional statements
Decisional statements
Which of the following backslash code used for bell?
\b
\a
\r
\s
For fixed iterations, which of the following looping structure is used?
Do-while
While
For
If-else-if
An if statement can have another if statement, is called.
Nested if
Nested
Nested for
Nesting
The conditional operator is an alternative to .
Switch
if-else
Simple if
A switch statement is used to
Switch between function in a program
Switch from one variable to another variable
To choose from multiple possibilities which may arise due to different values of single variable.
To use switching variables