Advanced Data Structures - ArrayList Application
Create a Book class that stores book information. Your Book class will store the following:
book title
author's first name
author's last name
book ISBN-10 number
publisher
price
Create a test application that creates several objects of type Book class and adds each book to an ArrayList. Your test application should then do the following:
Iterate through all books in the ArrayList and print the information out in readable form
Print the total number of books stored
Prompt you for an index and print the book information stored in the index
Hint: You may want to consider overriding the toString() method to provide a readable string representation of Book object.
Code must be readable with consistent style and should contain embedded comments and method headers.