Home »
MCQs »
C++ MCQs
Which of the following is the best option to make decisions for multiple choices?
83. Which of the following is the best option to make decisions for multiple choices?
- if
- if-else
- if-else-if
- All the above
Answer: C) if-else-if
Explanation:
In C++, "if-else-if" is the best option for multiple choices.