Beginner C#
Q12 / 100

What does the override keyword do?

Correct! Well done.

Incorrect.

The correct answer is B) Provides a new implementation of a virtual or abstract method from a base class

B

Correct Answer

Provides a new implementation of a virtual or abstract method from a base class

Explanation

override redefines a virtual/abstract method with runtime polymorphism. new creates a compile-time shadow (hiding), not true overriding.

Progress
12/100