logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Inheritance Comments

  • Question
  • 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.


  • Options
  • A. 1, 2, 4
  • B. 2, 4, 5
  • C. 1, 3, 5
  • D. 2, 4

  • Correct Answer
  • 1, 3, 5 


  • Inheritance problems


    Search Results


    • 1. 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

    • Options
    • A. 1, 3
    • B. 2, 5
    • C. 3, 4
    • D. 4, 5
    • Discuss
    • 2. Which of the following should be used to implement a 'Like a' or a 'Kind of' relationship between two entities?

    • Options
    • A. Polymorphism
    • B. Containership
    • C. Templates
    • D. Encapsulation
    • E. Inheritance
    • Discuss
    • 3. Which of the following statements is correct about the C#.NET program given below?

      namespace CuriousTabConsoleApplication
      {
          class Baseclass
          { 
              int i;
              public Baseclass(int ii)
              {
                  i = ii;
                  Console.Write("Base "); 
              } 
          } 
          class Derived : Baseclass
          {
              public Derived(int ii) : base(ii)
              {
                  Console.Write("Derived ");
              } 
          } 
          class MyProgram
          { 
              static void Main(string[ ] args)
              { 
                  Derived d = new Derived(10);
              } 
          } 
      }

    • Options
    • A. The program will work correctly only if we implement zero-argument constructors in Baseclass as well as Derived class.
    • B. The program will output: Derived Base
    • C. The program will report an error in the statement base(ii).
    • D. The program will work correctly if we replace base(ii) with base.Baseclass(ii).
    • E. The program will output: Base Derived
    • Discuss
    • 4. Which of the following should be used to implement a 'Has a' relationship between two entities?

    • Options
    • A. Polymorphism
    • B. Templates
    • C. Containership
    • D. Encapsulation
    • E. Inheritance
    • Discuss
    • 5. What will be the size of the object created by the following C#.NET code snippet?

      namespace CuriousTabConsoleApplication
      { 
          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();
              } 
          } 
      }

    • Options
    • A. 24 bytes
    • B. 12 bytes
    • C. 20 bytes
    • D. 10 bytes
    • E. 16 bytes
    • Discuss
    • 6. Assume class B is inherited from class A. Which of the following statements is correct about construction of an object of class B?

    • Options
    • A. While creating the object firstly the constructor of class B will be called followed by constructor of class A.
    • B. While creating the object firstly the constructor of class A will be called followed by constructor of class B.
    • C. The constructor of only class B will be called.
    • D. The constructor of only class A will be called.
    • E. The order of calling constructors depends upon whether constructors in class A and class B are private or public.
    • Discuss
    • 7. 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.

    • Options
    • A. 1, 2, 3
    • B. 3, 4
    • C. 2, 4, 5
    • D. 3, 5
    • Discuss
    • 8. Which of the following is correct about the C#.NET snippet given below?

      namespace CuriousTabConsoleApplication
      { 
          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);
              } 
          } 
      }

    • Options
    • A. The program gives the output as: Hi Hello Bye
    • B. The program gives the output as: Bye Hello
    • C. The program gives the output as: Hi Bye Hello
    • D. Error in the program
    • Discuss
    • 9. Which of the following will be the correct output for the C#.NET code snippet given below?

      String s1 = "Five Star";
      String s2 = "FIVE STAR";
      int c;
      c = s1.CompareTo(s2);
      Console.WriteLine(c);

    • Options
    • A. 0
    • B. 1
    • C. 2
    • D. -1
    • E. -2
    • Discuss
    • 10. Which of the following statements are true about the C#.NET code snippet given below?

      String s1, s2; 
      s1 = "Hi"; 
      s2 = "Hi";
      1. String objects cannot be created without using new.
      2. Only one object will get created.
      3. s1 and s2 both will refer to the same object.
      4. Two objects will get created, one pointed to by s1 and another pointed to by s2.
      5. s1 and s2 are references to the same object.

    • Options
    • A. 1, 2, 4
    • B. 2, 3, 5
    • C. 3, 4
    • D. 2, 5
    • Discuss


    Comments

    There are no comments.

Enter a new Comment