class BaseClass{ <br /> private float x= 1.0f; <br /> protected void setVar (float f) {x = f;} <br /> } <br /> class SubClass extends BaseClass   { <br /> private float x = 2.0f; <br /> //insert code here <br /> }  <br /> Which two are valid examples of method overriding?()     <br />   
A、 Void setVar(float f) {x = f;}
B、 Public void setVar(int f) {x = f;}
C、 Public void setVar(float f) {x = f;}
D、 Public double setVar(float f) {x = f;}
E、 Public final void setVar(float f) {x = f;}
F、 Protected float setVar() {x=3.0f; return 3.0f; }