Question: Write a method named avgLength which takes an array of Strings as an input parameter and returns a double. The method should calculate and return
Write a method named avgLength which takes an array of Strings as an input parameter and returns a double. The method should calculate and return the average length of all the strings in the array. Examples:
avgLength({"Hello", "Q"}) returns 3.0
avgLength({}) returns 0.0
avgLength({"Hello", "Goodbye"}) returns 6.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
