Question: The method reverseAllWords has a String parameter sentence which consists of words made up entirely of letter characters (e.g a-z and A-Z), with each adjacent

The method reverseAllWords has a String parameter sentence which consists of words made up entirely of letter characters (e.g a-z and A-Z), with each adjacent pair of words separated by exactly one space, and a single period after the final word. The method returns a String in which every word in the original sentence has had its letters reversed. The reversed words should still appear in their original order and be separated by single spaces with a period at the end.
For example the call reverseAllWords(The quick brown fox jumps over the lazy dog.) should return ehT kciuq nworb xof spmuj revo eht yzal god..
Complete method reverseAllWords below. Assume that works as specific regardless of what you wrote in Part A.
/** @param word a String consisting of words made up entirely of letter characters, with * each adjacent pair of words separated by exactly one space, and a single period * after the final word. * @return a String in which every word in the original sentence has had its letters * reversed. The reversed words should still appear in their original order and be * separated by single spaces with a period at the end. */ public static String reverseAllWords(String sentence)
Question 2 7 pts The method reverse AllWords has a string parameter sentence which consists of words made up entirely of letter characters (e.g a-z and A-Z), with each adjacent pair of words separated by exactly one space, and a single period after the final word. The method returns a String in which every word in the original sentence has had its letters reversed. The reversed words should still appear in their original order and be separated by single spaces with a period at the end. For example the call reverse AllWords("The quick brown fox jumps over the lazy dog.") should return "eht kciuq nworb xof spmuj revo eht yzal god.". Complete method reverse AllWords below. Assume that works as specific regardless of what you wrote in Part A. /** @param word a String consisting of words made up entirely of letter characters, with each adjacent pair of words separated by exactly one space, and a single period after the final word. @return a String in which every word in the original sentence has had its letters reversed. The reversed words should still appear in their original order and be separated by single spaces with a period at the end. public static String reverseAllwords (String sentence) HTML Editora BI A- A - Ix EDE N VX 33 xx 12pt - Paragraph
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
