Solved

Consider the Following Code Snippet

Question 42

Multiple Choice

Consider the following code snippet:
Public class Vehicle
{
Private String type;
Private int numAxles;
Public Vehicle(String vehicleType, int VehicleAxles)
{ ) . . }
}
Which of the following statements can be used to create an object of type Vehicle?


A) Vehicle anAuto = new Vehicle() ;
B) Vehicle anAuto = new Vehicle(2, "SUV") ;
C) Vehicle anAuto = new Vehicle("SUV", "2") ;
D) Vehicle anAuto = new Vehicle("SUV", 2) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions