Question: The objective of this exercise is to write a program that reads a number of Strings and sorts them by inserting each string into the
The objective of this exercise is to write a program that reads a number of Strings and sorts them by inserting each string into the appropriate place in an array list. The algorithm to sort is simple. As you read each name (say name1), compare it with each name (say name2) stored in the arraylist starting from the index 0. As soon (name1.compareTo(name2) >0), that is the right index to put name1. Be sure that you do not cross the ArrayList boundary.
*I am using JGrasp so please make sure it is compatible *Please comment throughout code *FULL QUESTION IN IMAGES BELOW


The objective of this exercise is to write a program that reads a number of Strings and sorts them by inserting each string into the appropriate place in an arraylist. For example, if the strings are
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
