Java Reference
In-Depth Information
8.
The Car class does not compile. Why? How can it be corrected?
9.
(Assume from here on that the problem with the Car class has been corrected.)
What is the output of the following statements?
Car audi = new Car();
Car.drive();
10.
What is the output of the following statements?
Car porsche = new Car(2, 4);
porsche.drive();
11.
What is the output of the following statements?
Vehicle v = new Vehicle(18);
v.drive();
v.numOfDoors = 2;
Search WWH ::




Custom Search