I am a beginner please don't be short tempered....can u please judge me where I v went wrong here
final class Balances { int bal; } class SavingsBal extends Balances { void checkbal() { //method implementation } public static void main(String args[]) { SavingsBal sb=new SavingsBal (); } } public class CurrentBal { void calcbal() { //method implementation } public static void main(String args[]) { CurrentBal cbo=new CurrentBal (); } }