11 lines
265 B
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();
|
|
}
|
|
}
|