Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hello, I need help with my Java assignment. Please let me know if you need additional information, thank you in advance. Write a program that

Hello, I need help with my Java assignment. Please let me know if you need additional information, thank you in advance.

image text in transcribed

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 longest Word 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

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Describe ERP and how it can create efficiency within a business

Answered: 1 week ago