abstract class A { abstract public int noOfWheels(); } class Test { public static void main(String[] argv) { A a=new A(); } }