Question:Which of the following correctly represents a nested if statement?
A if (x > 0) if (x < 10) { } B if (x > 0) { if (x < 10) { } } C Both D None
+ AnswerC
+ ExplanationBoth representations are valid nested if statements.
+ Report