1. String str = "Computer Applications" + 1 + 0;
System.out.println("Understanding" + str);
Answers
Answered by
4
Answer:
Understanding Computer Applications 10
Explanation: Understanding has been attached as it is then the string str is concanated with 1 and 0 as 10...
so the output comes to be Understanding Computer Applications 10
Similar questions