Solved

Consider the Following Code Snippet

Question 23

Multiple Choice

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


A) There must be a default constructor with no arguments.
B) A class cannot have more than one constructor.
C) If a class has more than one constructor, each one should have a unique name.
D) There is nothing wrong with this code.

Correct Answer:

verifed

Verified

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

Related Questions