Question: OBJECT ORIENTED PROGRAMMING CS102 Program: publicclass Car privateint yearModel: private String make; privatedouble speed: 1/ Write the constructor // write the gutter method for the

OBJECT ORIENTED PROGRAMMING CS102 Program: publicclass Car privateint yearModel: private String make; privatedouble speed: 1/ Write the constructor // write the gutter method for the instance variables // Write the accelerate method // Write the brake method 7. Consider the following code segment: public class Employee private int id; public static int counter; If a program instantiates four objects using this class, which of the following statements will be true? a. Each object will have anid instance variable and a counter instance variable b. Each object will have anid instance variable, but all objects will share a counter class variable c. All objects will share a single id class variable and a counter class variable d. All objects will share anid class variable and each object will have a counter instance variable OBJECT ORIENTED PROGRAMMING CS102 Program: publicclass Car privateint yearModel: private String make; privatedouble speed: 1/ Write the constructor // write the gutter method for the instance variables // Write the accelerate method // Write the brake method 7. Consider the following code segment: public class Employee private int id; public static int counter; If a program instantiates four objects using this class, which of the following statements will be true? a. Each object will have anid instance variable and a counter instance variable b. Each object will have anid instance variable, but all objects will share a counter class variable c. All objects will share a single id class variable and a counter class variable d. All objects will share anid class variable and each object will have a counter instance variable
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
