Discover the answers you need at Westonci.ca, where experts provide clear and concise information on various topics. Discover the answers you need from a community of experts ready to help you with their knowledge and experience in various fields. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.

Create an abstract class 'Bank' with an abstract method 'getBalance'. $100, $150 and
$200 are deposited in banks A, B and C respectively. 'BankA', 'BankB' and 'BankC'
are subclasses of class 'Bank', each having a method named 'getBalance'. Call this
method by creating an object of each of the three classes.