Using the given definition of the Measurable interface:

public interface Measurable {
double getMeasure();
}

Consider the following code snippet, assuming that BankAccount has a getBalance method and implements the Measurable interface by providing an implementation for the getMeasure method:

Measurable m = new BankAccount(); System.out.println(_________________________);

Select the correct expression to display the balance of the bank account.

A) m.BankAccount.getBalance()
B) m.getBalance()
C) ((BankAccount) m).getBalance()
D) m.super.getBalance()