Computer Science, asked by radhadas8331, 4 months ago

Write the output of the following:

int a = 10;

double b = 10.01;

System.out.println ( “The answer : “ + a + b );

System.out.println ( “The answer : “ + ( a + b ) );​

Answers

Answered by kamalrajatjoshi94
1

Answer:

Output:-

The answer:10 10.01

The answer:20.01

Similar questions