Podcast
Questions and Answers
What is the purpose of an If-Else Statement?
What is the purpose of an If-Else Statement?
- To execute both the true part and the false part of a given condition (correct)
- To guide a program to make decisions based on specified criteria
- To change the control flow of program execution via search and map
- To specify alternate processing when the conditions of the matching IF statement are not satisfied
Which type of selection is used in the IF-ELSE Statement?
Which type of selection is used in the IF-ELSE Statement?
- Nested If
- One-way Selection
- Two-way Selection (correct)
- Multiple Selection
What is the purpose of the Else Statement?
What is the purpose of the Else Statement?
- To guide a program to make decisions based on specified criteria
- To execute both the true part and the false part of a given condition
- To specify alternate processing when the conditions of the matching IF statement are not satisfied (correct)
- To change the control flow of program execution via search and map
What is the type of selection used in the IF-ELSE IF - ELSE Statement?
What is the type of selection used in the IF-ELSE IF - ELSE Statement?
What type of selection is used only in the IF Statement?
What type of selection is used only in the IF Statement?