Question: For the following questions, state which SOLID Principle the code violates. You are allowed unlimited time to complete this. Write which principle you think it
For the following questions, state which SOLID Principle the code violates. You are allowed unlimited time to complete this. Write which principle you think it violates and WHY. I am expecting at least 1 sentence, not one word.
21 22 23 24 class Vehicle { private: float _X, y; 25 26 27 28 public: Vehicle(); // moves the vehicle on the xy plane virtual void Move() = 0; }; 29 30 3 3 31 32 33 34 35 36 37 38 39 40 class Chevy Volt : public Vehicle { public: Chevyvolt(); // moves the car forward virtual void Move) override; }; 41 42 43 class Helicopter : public Vehicle { public: Helicopter(); // moves the helicopter in 3d space virtual void Move) override; }; 44 45 46 47
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
