Core Java Notes By Natraj Sir Pdf Free ((better)) -

Understanding the Request

6. OOP Concepts

2. Key Strengths

11. String Handling

String s1 = "Hello";
String s2 = new String("Hello");

s1.length(); // 5 s1.toUpperCase(); // "HELLO" s1.substring(1,3); // "el" s1.equals(s2); // true Understanding the Request