C# Advanced Questions

Click on "Show Answer" to reveal the answer.

1. Create a base class `Employee` with a method `GetSalary()`. Derive `FullTimeEmployee` and `PartTimeEmployee` classes that override the method to calculate salaries differently.

Max Time: 10 minutes

Explanation: This demonstrates polymorphism by allowing different employee types to implement their own salary calculation logic.

2. Create a `Vehicle` class with a method `Drive()`. Derive `Car` and `Truck` classes that override the method to provide specific driving behaviors.

Max Time: 8 minutes

Explanation: This demonstrates polymorphism by allowing different vehicle types to implement their own driving logic.

3. Create a `Shape` class with a method `CalculatePerimeter()`. Derive `Rectangle` and `Triangle` classes that override the method to calculate their respective perimeters.

Max Time: 12 minutes

Explanation: This demonstrates polymorphism by allowing different shapes to implement their own perimeter calculation logic.

4. Create a `Person` class with a method `GetDetails()`. Derive `Teacher` and `Student` classes that override the method to provide specific details.

Max Time: 10 minutes

Explanation: This demonstrates inheritance and polymorphism by allowing derived classes to provide their own implementation of a method.

5. Create a `BankAccount` class with methods `Deposit()` and `Withdraw()`. Derive `CheckingAccount` and `SavingsAccount` classes that override the methods to implement specific rules.

Max Time: 15 minutes

Explanation: This demonstrates polymorphism by allowing different account types to implement their own deposit and withdrawal rules.

6. Create a `Device` class with a method `TurnOn()`. Derive `Laptop` and `Smartphone` classes that override the method to provide specific behaviors.

Max Time: 10 minutes

Explanation: This demonstrates polymorphism by allowing different devices to implement their own start-up logic.

7. Create a `Game` class with a method `Start()`. Derive `Chess` and `Football` classes that override the method to provide specific game start logic.

Max Time: 8 minutes

Explanation: This demonstrates polymorphism by allowing different games to implement their own start logic.

8. Create a `Tool` class with a method `Use()`. Derive `Hammer` and `Screwdriver` classes that override the method to provide specific usage logic.

Max Time: 6 minutes

Explanation: This demonstrates polymorphism by allowing different tools to implement their own usage logic.

9. Create a `MusicalInstrument` class with a method `Play()`. Derive `Piano` and `Guitar` classes that override the method to provide specific playing behaviors.

Max Time: 10 minutes

Explanation: This demonstrates polymorphism by allowing different musical instruments to implement their own playing logic.

10. Implement a `Food` class with a method `Cook()`. Extend it to `Pizza` and `Pasta` with different cooking methods.

Max Time: 10 minutes

Explanation: This demonstrates polymorphism by allowing different food types to implement their own cooking logic.