✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Given the following code:
abstract class Vehicle {
abstract void start();
}
class Car extends Vehicle {
void start() {
System.out.println("Car starting...");
}
}
What is the significance of the abstract keyword in the Vehicle class?