logo

Crowdly

Browser

Add to Chrome

Given the following code: abstract class Vehicle {     abstract void start(); }...

✅ 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?

97%
97%
0%
0%
More questions like this

Want instant access to all verified answers on learning.devinci.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome