<AptiCode/>

The ultimate platform for developers to practice, compete, and grow. Join our community of passionate coders today.

TwitterLinkedIn

Platform

ProblemsCompilerAptitude TestsContests

Company

About UsContactRewardsContribute

Legal

Terms of ServicePrivacy PolicyShipping PolicyRefund Policy

© 2025 AptiCode. All rights reserved.

Made withfor developers

topic/Inheritance

Question NoTitleTypeMarks
656.What will be the size of the object created by the following C#.NET code snippet?namespace IndiabixConsoleApplication { class Baseclass { private int i; protected int j; public int k; } class Derived: Baseclass { private int x; protected int y; public int z; } class MyProgram { static void Main (string[ ] args) { Derived d = new Derived(); } } }
MCQ
5
503.What is the purpose of thesuper()function in Python when working with inheritance?
MCQ
5
504.What is method overriding?
MCQ
5
505.How is multiple inheritance implemented?
MCQ
5
506.What is the purpose of theisinstance()function?
MCQ
5
507.In Python, what is the order in which classes are searched when resolving a method or attribute?
MCQ
5
653.Which of the following can be facilitated by the Inheritance mechanism?Use the existing functionality of base class.Overrride the existing functionality of base class.Implement new functionality in the derived class.Implement polymorphic behaviour.Implement containership.
MCQ
5
654.Which of the following statements should be added to the subroutine fun( ) if the C#.NET code snippet given below is to output 9 13?class BaseClass { protected int i = 13; } class Derived: BaseClass { int i = 9; public void fun() { // [*** Add statement here ***] } }
MCQ
5
655.Which of the following statements are correct about the C#.NET code snippet given below?namespace IndiabixConsoleApplication { class index { protected int count; public index() { count = 0; } } class index1: index { public void increment() { count = count +1; } } class MyProgram { static void Main(string[] args) { index1 i = new index1(); i.increment(); } } }countshould be declared aspublicif it is to become available in the inheritance chain.countshould be declared asprotectedif it is to become available in the inheritance chain.While constructing an object referred to byifirstly constructor of index class will be called followed by constructor ofindex1class.Constructor of index class does not get inherited inindex1class.countshould be declared as Friend if it is to become available in the inheritance chain.
MCQ
5
657.Which statement will you add in the functionfun()of classB, if it is to produce the output"Welcome to IndiaBIX.com!"?namespace IndiabixConsoleApplication { class A { public void fun() { Console.Write("Welcome"); } } class B: A { public void fun() { // [*** Add statement here ***] Console.WriteLine(" to IndiaBIX.com!"); } } class MyProgram { static void Main (string[ ] args) { B b = new B(); b.fun(); } } }
MCQ
5