Assignment title: Information
Assessment task: Write a java console application that allows the user to read, validate, store, display, sort and search the title (String), ISBN (integer number), original price (double number) and discounted price (double number) for N books. N should be declared as a constant and it should be equal to the largest digit of your student id number (e.g. if your ID number is S0172341 then N should be equal to 7 and you can declare it as final int N=7;). The book title, ISBN, original price and discounted price must be stored in four separate single dimension Arrays/ArrayLists (index 0 for book 1 and index N-1 for book N). The minimum and maximum ISBN numbers which can be stored are 0 and 999999. The minimum and maximum original prices which can be stored are $10 and $200. The ISBN and original price must be entered from the keyboard and a validation for minimum and maximum values must be done.