AP CSA - Advanced Placement Computer Science A Practice Test
FREE AP CSA Object-Oriented Programming Questions and Answers
What is the correct way to create an object from the following class?
Select your answer
A
Car myCar = new Car();
B
Car myCar = new Car("Red");
C
Car myCar = Car("Red");
D
Car myCar = new Car(String color);
Hint