j Worksheet6 Inheritace
j Worksheet6 Inheritace
// Performing operations
System.out.println("\n--- Savings Account Operations ---");
savingAcc.deposit(2000);
savingAcc.calculateInterest();
savingAcc.withdraw(1000);
savingAcc.displayBalance();
class BankAccount {
private String accountHolder;
private double balance;