Answer:
((BankAccount) m).getBalance()
Step-by-step explanation:
m.getBalance look like the most appropriate answer but if we take a look at the Measurable interface, we realized that getMeasure doesn't return a String. So, in other to avoid runtime exception, we try to cast the return type to object of BankAccount type.
The code snippet would be;
Measurable m = new BankAccount();
System.out.println(((BankAccount) m).getBalance());