Q. What will be the output?
Code:System.out.println("5" + 5 * 5);
β
Correct Answer: (B)
525
Explanation: 5*5=25 then concatenation gives 525.
System.out.println("5" + 5 * 5);