____ is a multi-way decision making statement that chooses the statement block to be executed by matching the given value with a list of case values
Answers
Answered by
1
Answer:
switch statement i guess
Answered by
0
The switch case statement is a multi-way decision-making statement that chooses the statement block to be executed by matching the given value with a list of case values
Switch case statement
- The switch statement enables us to do several operations for the various possible values of a single variable known as the switch variable.
- The switch case statement checks a given expression and then carries out the statements related to it based on the calculated value.
- A multi-way branch statement is the switch case statement. It simply carries out various parts of the program statement based on the expression's value.
Similar questions