Create a program that uses the Binary search to find name in an array of Strings. You can use the array of names (or words) from the Selection Sort algorithm. Description of the search techniques can be found in the Java book, Chapter 10.5, page 513 or on the Binary Search page.
Your program needs the following:
Main Program
Instantiates the array of names (or words).
Sorts the array using whatever sorting algorithm you want.