Question: Write a program that has a method called longestWord. The method takes an array of Strings. The method then calculates which of the words in

Write a program that has a method called longestWord. The method takes an array of Strings. The method then calculates which of the words in array has the most letters. It returns the word (String). Note, if there are more than one word with the same number of letters (i.e., they have equal lengths), then return the first word in the array with that count. The method header is: public static String longest Word (String[] arr) You will test your method in the main method of your program by using a Scanner: First read in an int (N) representing the length of an array. Use the length to create a new String array Read in N words (single words) and save these in the array. Then call the method longestWord and pass the array you created. Print the longest word that is returned by the method. Examples: Sample Output (the first 'longest' word) Sample Input (an int, a sequence of Strings) Note: the first number is the size of the array (number of inputs). 5 apple orange banana lime pear orange 4 hockey basketball baseball diving basketball
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
