Computer Science, asked by jsprashantchouhan, 8 months ago

What will be the output of the following?
System.out.println (2+3+"HELLO");
System.out.println ("HELLO"+2+3);
System.out.println ("HELLO"+(2+3):
System.out.println ("A+"A"+'A'):​

Answers

Answered by Anonymous
2

Answer:

5HELLO;

HELLO5;

HELLO(5);

A65A;

Answered by madhabtripathy
3

Answer:

5HELLO

HELLO5

syntax error colon replace by semicolon

and ("A"+"A"+'A');

Similar questions