Q.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 polymorphic behaviour.
  5. Implement containership.
  • 1, 2, 3
  • 3, 4
  • 2, 4, 5
  • 3, 5
Q.2

Which of the following should be used to implement a 'Like a' or a 'Kind of' relationship between two entities?

  • Polymorphism
  • Containership
  • Templates
  • Encapsulation
  • Inheritance
Q.3

What will be the output of the C#.NET code snippet given below?

namespace IndiabixConsoleApplication
{ 
    class Baseclass
    { 
        public void fun()
        { 
            Console.Write("Base class" + " ");
        } 
    } 
    class DerivedBaseclass
    { 
        new void fun()
        {
            Console.Write("Derived1 class" + " "); 
        } 
    } 
    class DerivedDerived1
    { 
        new void fun()
        { 
            Console.Write("Derived2 class" + " ");
        }
    }
    class Program
    { 
        public static void Main(string[ ] args)
        { 
            Derived2 d = new Derived2(); 
            d.fun(); 
        } 
    } 
}
  • Base class
  • Derived1 class
  • Derived2 class
  • Base class Derived1 class
  • Base class Derived1 class Derived2 class
Q.4

There is no multiple inheritance in C#.NET. That is, a class cannot be derived from multiple base classes.

  • True
  • False
Q.5

If a base class contains a member function func(), and a derived class does not contain a function with this name, an object of the derived class cannot access func().

  • True
  • False
Q.6

Multiple inheritance is different from multiple levels of inheritance.

  • True
  • False
Q.7

How can you prevent inheritance from a class in C#.NET ?

  • Declare the class as shadows.
  • Declare the class as overloads.
  • Declare the class as sealed.
  • Declare the class as suppress.
  • Declare the class as override.
Q.8

Which of the following should be used to implement a 'Has a' relationship between two entities?

  • Polymorphism
  • Templates
  • Containership
  • Encapsulation
  • Inheritance
Q.9

Which of the following statements should be added to the subroutine fun( ) if the C#.NET code snippet given below is to output 9

class BaseClass
{
    protected int i =}
class Derived: BaseClass
{
    int i =
    public void fun()
    {
        // [*** Add statement here ***]
    } 
}
  • Console.WriteLine(base.i + " " + i);
  • Console.WriteLine(i + " " + base.i);
  • Console.WriteLine(mybase.i + " " + i);
  • Console.WriteLine(i + " " + mybase.i);
  • Console.WriteLine(i + " " + this.i);
Q.10

Creating a derived class from a base class requires fundamental changes to the base class.

  • True
  • False
Q.11

It is illegal to make objects of one class as members of another class.

  • True
  • False
Q.12

If a base class and a derived class each include a member function with the same name, the member function of the derived class will be called by an object of the derived class

  • True
  • False
Q.13

The size of a derived class object is equal to the sum of sizes of data members in base class and the derived class.

  • True
  • False
Q.14

An object of a derived class cannot access private members of base class.

  • True
  • False
Q.15

The way a derived class member function can access base class public members, the base class member functions can access public member functions of derived class.

  • True
  • False
Q.16

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 all the base class data.
  4. Inheritance cannot extend the base class functionality.
  5. In inheritance chain construction of object happens from base towards derived.
  • 1, 2, 4
  • 2, 4, 5
  • 1, 3, 5
  • 2, 4
Q.17

Which of the following is correct about the C#.NET snippet given below?

namespace IndiabixConsoleApplication
{ 
    class Baseclass
    { 
        public void fun()
        { 
            Console.WriteLine("Hi" + " ");
        } 
        public void fun(int i)
        {
            Console.Write("Hello" + " ");
        } 
    } 
    class Derived: Baseclass
    {
        public void fun()
        {
            Console.Write("Bye" + " ");
        } 
    } 
    class MyProgram
    { 
        static void Main(string[ ] args)
        { 
            Derived d; 
            d = new Derived(); 
            d.fun(); 
            d.fun(77);
        } 
    } 
}
  • The program gives the output as: Hi Hello Bye
  • The program gives the output as: Bye Hello
  • The program gives the output as: Hi Bye Hello
  • Error in the program
Q.18

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 =        }
    }
    class indexindex
    {
        public void increment()
        {
            count = count +        }
    }
    class MyProgram
    {
        static void Main(string[] args)
        {
            index1 i = new index1(); 
            i.increment(); 
        }
    }
}
  1. count should be declared as public if it is to become available in the inheritance chain.
  2. count should be declared as protected if it is to become available in the inheritance chain.
  3. While constructing an object referred to by i firstly constructor of index class will be called followed by constructor of index1 class.
  4. Constructor of index class does not get inherited in index1 class.
  5. count should be declared as Friend if it is to become available in the inheritance chain.
  • 1, 2, 5
  • 2, 3, 4
  • 3, 5
  • 4, 5
  • None of these
Q.19

Private members of base class cannot be accessed by derived class member functions or objects of derived class.

  • True
  • False
Q.20

A class D can be derived from a class C, which is derived from a class B, which is derived from a class A.

  • True
  • False
0 h : 0 m : 1 s