Consider the following UML class diagram:Which of the follow…
Consider the following UML class diagram:Which of the following statements are TRUE? Select ALL that apply.—————————————- | BankAccount | —————————————- | – accountNumber : String | | – balance : double | —————————————- | + BankAccount() | | + BankAccount(num:String, bal:double)| | + deposit(amount:double) : void | | + withdraw(amount:double) : boolean | | + getBalance() : double | | + toString() : String | —————————————-