Multiple choice technology programming languages

You can declare the override method static while the original method is non-static.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In C#, virtual or override methods cannot be declared static. The static modifier cannot be combined with virtual, abstract, or override modifiers because static methods are bound at compile time, whereas overrides require dynamic runtime dispatch.