Which of the following may override a method whose signature is void myMethod
(float f)?
A, B.
A uses the original method's signature verbatim, which is legal.
B makes the subclass version more accessible, which is legal.
C makes the subclass version less accessible, which is not legal.
D and E change the return type, which is not legal.