Whats is the output?
public class Vehicle {
int speed;
Vehicle(int s) {
speed = s;
}
}
class car{
public static void main(String[] args) {
Vehicle car = new Vehicle();
System.out.println(car.speed);
}
}