You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\pard\sa200\sl276\slmult1\f0\fs36\lang9 Create a base class called Vehicle that stores number of wheels and speed.\par
Create the following derived class:\par
Car that inherits Vehicle and also stores number of passengers.\par
Truck that inherits Vehicle and also stores the load limit.\par
Write a main() function to create onjects of these classes and display all the information about Car and Truck. Also, compare the speed of the two vehicles.\par