Computer Science, asked by debasmitajini, 9 months ago

char m='C';
int p=25;
What will be the output of the statement?
System.out.println(m+p);
System.out.println("Answer:" +m+p);
PLEASE HELP!!​

Answers

Answered by bharath7965
0

Answer:

System.out.println(m+p);

ans: 92

System.out.println("Answer:"+m+p);

ans: Answer:C25

Similar questions