Computer Science, asked by barnalisarkar89132, 6 months ago

output of system.out.println(4+5+"India");​

Answers

Answered by ItzMeSam35
2

System.out.println(4+5+"India");

>> 9India

>> First the system will evaluate 4 + 5 and then it will print "India".

Similar questions