Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Q2. Write a Java program that has two classes, as follows: Class: HW5_Q2_YourStudentld_Demo You will do the following in the main method of this class:

image text in transcribedimage text in transcribed

Q2. Write a Java program that has two classes, as follows: Class: HW5_Q2_YourStudentld_Demo You will do the following in the main method of this class: Open a given txt file (you may hard code the filename) containing n names, and read and store these names into a String array, - Ask user to enter a name to search in the array, Create an object of SortAndSearch class (described below) and use the sort and search methods on this object. The search method returns true if the name exits in the list, else returns false, - Print "The given name... exists" if the name is found, else "The given name. is not found", if the name doesn't exist in the list Class: SortAndSearch, with the following properties: - one instance field, i.e. String array - constructor that sets the String array field with the input String array method 1 (for sorting) sorts the String array (using Selection sort algorithm), and returns the sorted array method 2 (for searching) accepts the following argument: a specific name to search in the sorted array (using Binary search algorithm), and returns true if the given name exists, otherwise returns false. Sample output is as below If the .txt file contains the following names (show the working of your program with at least 10 names in the .txt file): John Mary Ravi

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_2

Step: 3

blur-text-image_3

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

Advanced Database Systems

Authors: Carlo Zaniolo, Stefano Ceri, Christos Faloutsos, Richard T. Snodgrass, V.S. Subrahmanian, Roberto Zicari

1st Edition

155860443X, 978-1558604438

More Books

Students also viewed these Databases questions

Question

How do modern Dashboards differ from earlier implementations?

Answered: 1 week ago