Solved

Consider the Following Code Snippet

Question 45

Multiple Choice

Consider the following code snippet:
Public class Vehicle
{
Private String type;
Private int numAxles;
Public void Vehicle(String vehicleType, int VehicleAxles)
{ ) . . }
}
What is wrong with this code?


A) There must be a default constructor with no arguments.
B) The class instance variables must be initialized in the declaration statements.
C) The constructor declaration must have a return type of String.
D) The constructor declaration must not have any return type.

Correct Answer:

verifed

Verified

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

Related Questions