0 / 60 seg.

What is the purpose of a default constructor in Java?

class Vehicle {
    int speed;
    Vehicle() {
        speed = 0;
    }
}