1

Give the output of the following code:
String A= “26”, B= “100” ;
String D=A+B+ “200”;
int x= Integer.parseInt(A);
int y=Integer.parseInt(B);
int d=x+y;
System.out.println(D+” “+d);

  • 226 2600

  • 26100200 2600

  • 26100200 126

  • 226 126