If you need to count the occurrences of chars in a String then what you need is an int array with a length of 26. Then iterate over the String one char at a time. If the char is an 'a' increment the...