Complete ICSE Strings chapter revision pack for board exam scoring – prepared by Amit Sir.
Strings is one of the most scoring topics in ICSE Class 10 Computer Applications. Board exams regularly include questions from String methods, character handling, output questions, and programming logic.
Example Program from Strings Pack:
class StringDemo {
public static void main(String args[]) {
String s = "COMPUTER";
System.out.println("Length = " + s.length());
System.out.println("Substring = " + s.substring(1, 5));
System.out.println("Character at 3 = " + s.charAt(3));
}
}
📌 WhatsApp for payment and delivery: +91 81819 69432