Answered step by step
Verified Expert Solution
Question
1 Approved Answer
IN JAVA >> Question: The Rochester Bank maintains customer records in a random access file. Write an application to perform the following tasks: 1. Define
IN JAVA >>
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 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 programStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started