public class StringExample { public static void main (String[] argv) { // Pangram: a sentence with at least one occurence of each letter 'a' to 'z'. // Direct creation of String array with constants. String[] pangramWords = {"two", "driven", "jocks", "help", "fax", "my", "big", "quiz"}; // Note: pangramWords is a pointer. // Count total length of all words. int totalChars = 0; for (int i=0; i