Files
oop/assignment5/Question1/StartGrading.java

11 lines
265 B
Java

//Q1
public class StartGrading {
public static void testVehicle() {
//The Vehicle class is abstract. We cannot create objects from this class. Therefore, we cannot test anything
}
public static void main(String[] args) {
Vehicle.testVehicle();
}
}