Selection and Repetitions

Gapfill exercise

  
Enter your answers in the gaps. When you have entered all the answers, click on the "Check" button.
What are conditional and unconditional statements in C?
Conditional Looping: Computation continues indefinitely until the condition is . Unconditional Looping : The number of known in advance or repetition is .

What are looping statements in C?
statement are the statements execute or more statement repeatedly several number of . In C programming language there are types of loops; , for and do-while.

What is if and if else statement?
if statement - executes some code if one is . if...else statement - executes some code if a condition is and another code if that condition is . ... elseif...else statement - executes different codes for more than conditions. statement - selects one of many blocks of code to be executed.

What is if else ladder in C?
The if ladder statement in C language is used to test set of in sequence. ... If any of the conditional expression evaluates to , then it will execute the corresponding code block and exits whole if-else .

Why break is used in C?
When a break is encountered inside a loop, the loop is immediately and the control resumes at the next statement following the . It can be used to a case in the statement.