String Class in Java
String class in Java: String: 1. String is a sequence of character enclosed within double quote. 2. String class is a non- premitive data type. 3. String class present in a java.lang package. 4. String is a immutable i.e when we create a String object then we can't change in it. that means we can assign new value to that String object but we can't perform any change in previous value. ...