abstract class print {
abstract show();
}
class Display extends print {
}
Nothing is wrong
Wrong Method show() should have a return type
Wrong Methods show() is not implemented in Display
Wrong Display does not contain any members.
C. Wrong Methods show() is not implemented in Display