What is the output of the following code snippet?
int x = 5;
if (x > 3) {
System.out.println("Hello");
}
if (x > 3) {
System.out.println("Hello");
}
A. No output
B. Error
C. Hello
D. 5
Answer: Option C
Join The Discussion