Advertisements
Advertisements
Question
If String x = "Computer";
String y = "Applications";
What do the following functions return?
- System.out. println(x.substring(1,5));
- System.out.println(x.indexOf(x.charAt(4)));
- System.out.println(y + x.substring(5));
- System.out.println(x.equals(y));
Answer in Brief
Solution
- ompu
- 4
- Applicationster
- false
shaalaa.com
Is there an error in this question or solution?