PrepAway - Latest Free Exam Questions & Answers

How should you call the Truck class implementation of the brake () method?

You have a class named Truck that inherits from a base class named Vehicle. The Vehicle
class includes a protected method named brake ().
How should you call the Truck class implementation of the brake () method?

PrepAway - Latest Free Exam Questions & Answers

A.
Vehicle. brake ();

B.
This. brake ();

C.
MyBase. brake();

D.
Truck. brake ();

Explanation:
The MyBase keyword behaves like an object variable referring to the base class of the
current instance of a class.MyBase is commonly used to access base class members that
are overridden or shadowed in a derived class.

3 Comments on “How should you call the Truck class implementation of the brake () method?

  1. Serge says:

    There is no such thing like a MyBase in c#.

    Answer is D: Truck.brake();

    protected members or methods are accessible within the class and derived calss.

    public class Vehicle
    {
    private int a;
    protected void Break()
    {
    { Console.WriteLine(“Breaks from Vehicle”); }
    }
    }

    class Truck : Vehicle
    {
    static void Main(string[] args)
    {
    Truck t = new Truck();

    t.Break();
    }

    }




    0



    0

Leave a Reply