Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Your task is to write methods for a program that analyzes an arbitrary number of strings passed as arguments on the command line. Like with

image text in transcribed

Your task is to write methods for a program that analyzes an arbitrary number of strings passed as arguments on the command line. Like with many large projects, some of the code has been written for you, and you are not allowed to change it. Instead, you are constrained to filling in certain methods, that must operate to fulfill not only individual-method unit tests, but tests that cover larger swaths of code. As an example, consider that a user calls the program from the terminal without any arguments: $java edu.wit.cs.comp1050.PA3a Please supply at least one argument at the command line That is, you will be writing verification that there is at least one argument supplied! Now let's consider a valid example: $java edu.wit.cs.comp1050.PA3a hello world! Arguments (2, no duplication) hello world! Length: total=11, avg-6 shortest (5): hello Longest (6): Average (6): Now you can see the program in action, but perhaps not all the pi eces, so another: $ java edu.wit.cs.comp1050. PA3a I see a little silhouetto of a man Scaramouche Scaramouche will you do the Fandango Thunderbolt and lightning very very fright\'ning me Arguments (22, has duplication): I see a little silhouetto of a man Scaramouche Scaramouche will you do the Fandango Thunderbolt and lightning very very fright'ning me Length: total=113, avg 5 Shortest (1): first-, last-a> Longest (11): first-, last- Average (5): none COMP1050, Fall 2017, Ergezer- g Assignment 3 2 The program produces outputs that counts the overall and average length (rounded to the nearest integer), checks for duplication, and outputs the first and last arguments that have the shortest, longest, and average lengths. The following methods have been implemented completely, and you are NOT to change them: main: validates input, produces program output .firstofLength/lastofLength: call a common utility method (that you WILL implement) to find an element of a particular length .firstlongestElement/lastLongestElement: call a common utility method (that you WILL implement) to find the longest element firstShortestElement/lastshortestElement: call a common utility method (that you WILL implement) to find the shortest element The remaining methods must be implemented by you, as guided by the Javadoc and JUnit tests

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Database Design Using Entity Relationship Diagrams

Authors: Sikha Saha Bagui, Richard Walsh Earp

3rd Edition

103201718X, 978-1032017181

More Books

Students also viewed these Databases questions