
hello
what would we output for this statement
System.out.println ("5"+"A" + 3);

hello
output will be
5A3

System.out.println ("5"+"A" + 3);
the above statement gives
5A3
Because
+ is overrides and
jvm treat as concat string
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.