Java interview questions on string handling
String:
In General – String is sequence of characters.
In Java – String is an object which is created by using String class. String objects are immutable and they can’t modified i.e. any change in the existing object will result into a new object.
Please Share