❑ a class inheriting from another class.
❑ a variable.
❑ a method.
❑ an expression.
a class inheriting from another class.
❑ true
❑ false
false
❑ an interface.
❑ an abstract class.
❑ a private class.
an interface
❑ all instance variables and methods
❑ public instance variables and methods only
❑ protected instance variables and methods only
❑ protected and public instance variables and methods
protected and public instance variables and methods
❑ inherits
❑ includes
❑ extends
❑ implements
implements
❑ true
❑ false
true
❑ With any constructor.
❑ With the default constructor only.
❑ You cannot instantiate an object from an abstract class.
You cannot instantiate an object from an abstract class.
❑ inherited
❑ super
❑ class
❑ methodName
super
super( );
❑ It should be the last statement.
❑ It should be the first statement.
❑ It can be anywhere.
It should be the first statement
❑ the class must be declared abstract.
❑ the class is not abstract.
❑ the class may or may not be abstract.
❑ all of the above
the class must be declared abstract.
public void myMethod( )
{
}
❑ This method is abstract.
❑ This method is not abstract.
This method is not abstract.