questions 1. Which of the following can be facilitated by the Inheritance mechanism? 1.Use the existing functionality of base class. 2.Overrride the existing functionality of base class. 3.Implement new functionality in the derived class. 4.Implement A. 3, 4 B. 1, 2, 3 C. 3, 5 D. 2, 4, 5 View Answer Report Answer & Explanation Answer: Option B Explanation: Report Error Send Report 2. Which of the following is the correct way to create an object of the class Sample? A. Declare the existing class as overloads. B. Declare the existing class as shadows C. Declare the existing class as suppress. D. Declare the existing class as seale View Answer Report Answer & Explanation Answer: Option A Explanation: Report Error Send Report 3. Which of the following statements are correct about Inheritance in C#.NET? 1.A derived class object contains all the base class data. 2.Inheritance cannot suppress the base class functionality. 3.A derived class may not be able to access A. 2, 4, 5 B. 1, 2, 4 C. 2, 4 D. 1, 3, 5 View Answer Report Answer & Explanation Answer: Option B Explanation: Report Error Send Report 4. In an inheritance chain which of the following members of base class are accessible to the derived class members? 1.static 2.protected 3.private 4.shared 5.public A. 2, 5 B. 1, 3 C. 4, 5 D. 3, 4 View Answer Report Answer & Explanation Answer: Option D Explanation: Report Error Send Report