1 Account account1 = new Account();  // Creation of objects of the class Account
2 Account account2 = new Account();
3 Account account3 = new Account();
4 
5 account1.transaction(100);     // Invokations of method transaction()
6 account2.transaction(2000);
7 account3.transaction(3000);
Last modified: Saturday, 18 May 2019, 12:36 PM