Computer Science, asked by Ayushibanik, 4 months ago

State the output of the following:
System.out.println("Computer Exam"+20+20);
System.out.println("Computer Exam"+(20+21));​

Answers

Answered by atrs7391
0

Given Snippet:

System.out.println("Computer Exam"+20+20);

System.out.println("Computer Exam"+(20+21));​

Output of the given Snippet:

Computer Exam2020

Computer Exam41

Similar questions