Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started