The String class provides the methods for obtaining length, retrieving individual characters, and concatenating strings. java.lang.String +length(); return type int +charAt(index : int); return type char +concat(str1 : String); return type String The String class contains the methods for getting string length, individual characters and combing strings. You can get the length of a string by invoking its length() method. Click here for example . You can retrieve a specific character from a string by using charAt(index : int) method. Click here for example. Note : - A string value is represented using a private array variable internally. The array cannot be accessed outside of the String class. The String class provides many public methods, such as length() and charAt(index), to retrieve the array information. This is a good example of encapsulation: the data fi...