`In Java, a string is a sequence of characters. For example, "hello" is a string containing a sequence of characters 'h', 'e', 'l', 'l', and 'o'.` `We use double quotes to represent a string in Java.` ...
In java, string is basically an object that represents sequence of char values. An array of characters works same as java string. For example: char[] ch={'j','a','v','a','t','p','o','i','n','t'}; ...