Multiple Choice
Assume that myCar is an instance of the Car class, and that the Car class has a member function named accelerate. Which of the following is a valid call to the accelerate member function?
A) Car->accelerate() ;
B) myCar::accelerate() ;
C) myCar.accelerate() ;
D) myCar:accelerate() ;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q6: When the body of a member function
Q7: You must declare all data members of
Q17: Class declarations are usually stored here.<br>A)on separate
Q18: One purpose that constructor functions are often
Q20: A _ is a member function that
Q24: Objects are created from abstract data types
Q26: This type of member function may be
Q27: A private member function is useful for
Q30: A destructor function can have zero to
Q37: If you do not declare a destructor