What are the following public functions in the listed Car class definition known as?

a. class Car { public: void start(); void accelerate(double speed); void stop(); double get_speed()
b. const; private: double speed; bool check_speed() const; };
c. A public interface A private interface A class implementation
d. An object definition