- Home
- Output Questions for Class 10 ICSE Computer Applications
Write the output for the following String s1 phoenix String s2 island
Output Questions for Class 10 ICSE Computer Applications
Write the output for the following:
String s1 = "phoenix"; String s2 ="island";
System.out.println(s1.substring(0).concat(s2.substring(2)));
System.out.println(s2.toUpperCase());