Question: Question 2 [15 marks]: Given the following classes: class Transportation { protected: int capacity: public: Transportation() { capacity=; Transportation(int cap) capacity=cap; } /*getters and setter/
![Question 2 [15 marks]: Given the following classes: class Transportation {](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f548d01758f_99166f548cf7a97c.jpg)

Question 2 [15 marks]: Given the following classes: class Transportation { protected: int capacity: public: Transportation() { capacity=; Transportation(int cap) capacity=cap; } /*getters and setter/ virtual void move() = ; void print coutprint(); O Compiler error Explain OOK Possible output? Explain 2-b) Sports Car *s; s=new SportsCar(2, "porche"); S->move; O Compiler error Explain OOK Possible output? Explain 2-c) Car *c=new Car(4,"Tesla"); SportsCar *s; S=c; C->move(); O Compiler error Explain OOK Possible output? Explain 2-d) Car *c; SportCar *s=new SportCar(4, "chevrolet"); C=S; S->move(); O Compiler error Explain OOK Possible output? Explain 2-e) Car *c; Sports Car *s=new Sports Car(4, "chevrolet"); c=s; C->displayMake(); O Compiler error Explain OOK Possible output? Explain
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
