Given the following Imagine that is attached, select that all apply
A. If the Other class extends the Base class then the method guessNumber() in Other overloads the method guessNumber in Base
B. If the Other class extends the Base class then the method guessNumber() in Other overrides the method guessNumber in Base
C. If the Base class implements MyInterface then it must implement the guessName method or declare it abstract.
D. If the Base class implements MyInterface, then every class that extends the Base class also implements MyInterface.
E. If the Other class extends the Base class, and implements MyInterface then the Base class also implements MyInterface
F. MyInterface can have private methods specified.
Extracted text: Given the following classes, select all the statements that are true. Note that negative marking applies. Base.java: public abstract class Base { private String name; public String getName () { return name; } public abstract int guessNumber(); } Other.java: public class Other { public int guessNumber () { // } } Mylnterface.java: public interface MyInterface { public String guessName(); }