Question:Which statement is used to handle multiple conditions in C#?
A if-else B switch C Both D None
+ AnswerC
+ ExplanationBoth if-else and switch statements can be used to handle multiple conditions.
+ Report