Computer Science, asked by AakashAashi, 1 year ago

1. String str = "Computer Applications" + 1 + 0;
System.out.println("Understanding" + str);

Answers

Answered by vardanshubhimt
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