Consider the class BankAccount, for use in a bank\'s account record system publi
ID: 663318 • Letter: C
Question
Consider the class BankAccount, for use in a bank's account record system public class Bank Account private String accName the account holder's name, e.g. Bill Gates private int accNumber; private int balance; public String getName() return accName public int get Balance {return balance; constructor and other details omitted Write an efficient method public int range (BankAccount accList) that returns the difference between the largest and smallest balances in accList. range should throw an exception if accList is empty or null. You may assume that the records are sorted by their account numbers.Explanation / Answer
// Consider the class is BankAccount , for use in a bank