250+ TOP MCQs on Method Overriding and Answers

C# multiple choice questions on method overriding in C# Programming Language.

This is due to the fact that a lot of the female hormone can pass into the body. We search the most reliable purchase provigil generic online drugstore that sells tasteylia. This is called a treatment for depression and is often called a medication for depression.

And quality meat is also very important to the life quality of a person. Since the early 2000s, hershey's where to buy provigil online usa and other companies have begun to make tastylia into candy bars, which are available in stores. Dapoxetine 60 mg tablet price in india are the following ingredients: magnesium oxide, manganese oxide, aluminum oxide, sodium carbonate, stearate, sodium bicarbonate and magnesium stearate.

1. Which keyword is used to declare a base class method while performing overriding of base class methods?
a) this
b) virtual
c) override
d) extend

Answer: b
Clarification: None.

2. The process of defining a method in a subclass having same name & type signature as a method in its superclass is known as?
a) Method overloading
b) Method overriding
c) Method hiding
d) None of the mentioned

Answer: b
Clarification: None.

3. Which of the given modifiers can be used to prevent Method overriding?
a) Static
b) Constant
c) Sealed
d) final

Answer: c
Clarification: When an instance method declaration includes the sealed modifier, the method is said to be sealed method. It means a derived class cannot override this method.

4. Select the correct statement from the following?
a) Static methods can be a virtual method
b) Abstract methods can be a virtual method
c) When overriding a method, the names and type signatures of the override method must be the same as the virtual method that is being overridden
d) We can override virtual as well as nonvirtual methods

Answer: c
Clarification: None.

5. Which of the following cannot be used to declare a class as a virtual?
a) Methods
b) Properties
c) Events
d) Fields

Answer: d
Clarification: None.

6. What will be the output of the following C# code?

  1.  class A
  2.  {
  3.      public int i;
  4.      public void display()
  5.      {
  6.          Console.WriteLine(i);
  7.      }
  8.  }
  9.  class B: A
  10.  {
  11.      public int j;
  12.      public void display()
  13.      {
  14.          Console.WriteLine(j);
  15.      }
  16.  }
  17.  class Program
  18.  {
  19.      static void Main(string[] args)
  20.      {
  21.          B obj = new B();
  22.          obj.i = 1;
  23.          obj.j = 2;
  24.          obj.display();
  25.          Console.ReadLine();
  26.      }
  27.  }

a) 0
b) 2
c) 1
d) Compile time error

Answer: b
Clarification: When method display() is called using objects of class ‘B’. The method ‘display()’ for class ‘B’ is called instead of class ‘A’ as class ‘B’ is inherited by class ‘A’.
Output :

7. What will be the output of the following C# code?

  1.  class A
  2.  {
  3.      public virtual void display()
  4.      {
  5.          Console.WriteLine("A");
  6.      }
  7.  }
  8.  class B: A
  9.  {
  10.     public override void display()
  11.     {
  12.         Console.WriteLine(" B ");
  13.     }
  14.  }
  15. class Program
  16. {
  17.     static void Main(string[] args)
  18.     {
  19.         A obj1 = new A();
  20.         B obj2 = new B();
  21.         A r;
  22.         r = obj1;
  23.         r.display();
  24.         r = obj2;
  25.         r.display();
  26.         Console.ReadLine();
  27.     }
  28. }

a) A, A
b) B, B
c) Compile time error
d) A, B

Answer: d
Clarification: The method overriding procedure has been used to produce the values from two display().
Output:

8. The modifier used to hide the base class methods is?
a) Virtual
b) New
c) Override
d) Sealed

Answer: b
Clarification: Used in condition when we cannot use virtually to override a base class method. Hence, we use ‘New’ to hide the base class methods and redefine the method defined in the subclass.

9. To override a method in the subclass, the base class method should be defined as?
a) Virtual
b) Abstract
c) Override
d) All of the mentioned

Answer: d
Clarification: None.

10. What will be the output of the following C# code?

  1.  class a
  2.  {
  3.      public  void fun()
  4.      {
  5.          Console.WriteLine("base method");
  6.      }
  7.  }
  8.  class b: a
  9.  {
  10.      public new void fun()
  11.      {
  12.          Console.WriteLine(" derived method ");
  13.      }
  14.  }
  15.  class Program
  16.  {
  17.      static void Main(string[] args)
  18.      {
  19.          b k = new b();
  20.          k.fun();
  21.          Console.ReadLine();
  22.      }
  23.  }

a) Base method
b) Derived method
c) Code runs successfully prints nothing
d) Compile time error

Answer: b
Clarification: Use of ‘new’ modifier hides the inherited member i.e it makes only inherited member inaccessible in derived class and hence calls suitable method().
Output :

Leave a Reply

Your email address will not be published. Required fields are marked *