}publicvoidfrequencyOfCharactersRec(String input, String currentChar){// If only one char is leftif(input.length() <=1) { System.out.println(currentChar +": 1"); }else{// Checking Initial length and saving itintinputOldLength=input.length();// Removing the char whose frequency I am c...