A loop that never ends is known as
Finite loop
Infinite loop
Exit loop
End loop
The sequence contract means.
Statements get executed sequentially
Executed alternatively
Executed repeatedly
Executed depends upon a condition sequentially.
Write the output of the following code. For ( int I = 0; I < 5 ; i+ + ) Cout < < pow (2, i ) ;
1 2 4 8 16
1 2 4 8 16 32
1 2 3 4 5
1 2 4 9 16
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
The conditional operator is an alternative to .
Switch
if-else
Simple if
While
Which is a jump statement?
go to
auto
for
struct
Swapping of two characters means .
Exchange
Function
Arithmetic operation
Logical expression
An if statement can have another if statement, is called.
Nested if
Nested
Nested for
Nesting