What is the correct answer?
4
abstract class print { abstract show();} class Display extends print {}
A. Nothing is wrong
B. Wrong Method show() should have a return type
C. Wrong Methods show() is not implemented in Display
D. Wrong Display does not contain any members.