Question:Which of the following is used to create a conditional statement in C#?
A if B for C while D switch
+ AnswerA
+ ExplanationThe if statement is used to execute code based on a condition.
+ Report