Create an class called Book the following attributes
like,
book_id as integer
book_name as String
book_price as double
book_write as String
create another class called BookBO
which consist one field two methods like
Book[] book
i)public void setBook(Book[] book)
ii)public Book[] getBook()
iii)public boolean searchBook(int bookid)
create another class called Main to access all other class to save and extract the information of 5 books.