Beginner Java
Q39 / 100

What is the output of: System.out.println("5" + 3)?

Correct! Well done.

Incorrect.

The correct answer is B) 53

B

Correct Answer

53

Explanation

When a String is added to an int, Java concatenates them. "5" + 3 produces "53".

Progress
39/100