Question: 7. The programmer's intention is that a class Classis should have a void and argument-less method Meth defined in it. That method is declared in

7. The programmer's intention is that a class Classis should have a void and argument-less method Meth defined in it. That method is declared in the interface IMeto. How should the programmer start: (1 Point) class Classis implements IMeto{ void Meth() {...}} class Classis extends Meto { int Meth0.}} class Classis extends IMeto{ void Meth() {...} } class Classis : IMeto{ void Meth() {...}} 8. Here are the starting lines of a class Burro: class Burro{ public Burro(int i, char c, String str, double x, float f) ..... Is it enough to say that the constructor of the class Burro is overloaded? (1 Point) Yes No There is clearly no constructor there There is no constructor overloading in Java 9. If the method AB is present in both a superclass and, with the same signature, in its subclass, we say that (1 Point) The base class method is overloaded by that of the subclass Nothing meaningful can be said There are no base classes and derived classes in Java The base class method is overridden by that of the subclass
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
