Given:
Which two methods, inserted individually, correctly complete the Three class?()
A.public void foo() {}
B.public int foo() { return 3; }
C.public Two foo() { return this; }
D.public One foo() { return this; }
E.public Object foo() { return this; }
Given:
What is the result?()
A.3
B.23
C.32
D.123
E.321
Given:
What is the result?()
A.2
B.3
C.4
D.6
E.7