Home / C# Programming / Polymorphism :: Discussion

Discussion :: Polymorphism

  1. Which of the following are necessary for Run-time Polymorphism?

    1. The overridden base method must be virtual, abstract or override.
    2. Both the override method and the virtual method must have the same access level modifier.
    3. An override declaration can change the accessibility of the virtual method.
    4. An abstract inherited property cannot be overridden in a derived class.
    5. An abstract method is implicity a virtual method.

  2. A.

    1, 3

    B.

    1, 2, 5

    C.

    2, 3, 4

    D.

    4 only

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment