Given:  <br /> 10. class One {  <br /> 11. void foo() { }  <br /> 12. }  <br /> 13. class Two extends One {  <br /> 14. //insert method here  <br /> 15. }  <br /> Which three methods, inserted individually at line 14, will correctly complete class Two?()
A、 public void foo() { /* more code here */ }
B、 private void foo() { /* more code here */ }
C、 protected void foo() { /* more code here */ }
D、 int foo() { /* more code here */ }
E、 void foo() { /* more code here */ }