Question: In the following code: public class car { private string carName; private double carprice; private string carcolor; private Engine engine; } a . Engine is
In the following code:
public class car
private string carName;
private double carprice;
private string carcolor;
private Engine engine;
a Engine is an object of class Car
b The compiler will report an error because of declaring the engine in the Car class
c engine will be defined per the Car class as a class variable, not per object
d engine will be an instance field of each Car object
clear my choice
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
