Question: Write a JAVA program: Question: The Rochester Bank maintains customer records in a random access file. Write an application to perform the following tasks: 1.Define
Write a JAVA program:
Question: The Rochester Bank maintains customer records in a random access file. Write an application to perform the following tasks:
1.Define a BankAccount class that has account number, customer name, and balance as data fields. The class should also has necessary constructors, getter/setter methods .
2.Creates 100 BankAccount objects that include bank account number (an random integer 1000 or less. Do not accept duplicate account number), customer's name, and a balance (a random double value 99000 or less).
3.Each time after a BankAccount object is created, insert the object into a data file so that all records in the file are sorted in ascending order of the account number. Force each name to eight characters, padding it with spaces or truncating it if needed.
4.Allow the user to enter an account number to view the account balance for that account.
Requirements: 1. Program should handle exceptions properly
2. Program should be well-documented
3. Submit the repl.it link of the program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
