Computer Science, asked by varsuvk, 8 days ago

Give the output of following



String p = "20", q = "21";

int a = Integer.parseInt(p);

int b = Integer.valueOf(q);

System.out.println(a + "" + b);​

Answers

Answered by ayushrajpoot26
2

Answer:

String P = "20", Q ="19";

int a = Integer.parseInt(P);

int b = Integer.valueOf(Q);

System.out.println(a+""+b);

Similar questions