logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Inheritance Comments

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


  • Options
  • A. Declare the class as shadows.
  • B. Declare the class as overloads.
  • C. Declare the class as sealed.
  • D. Declare the class as suppress.
  • E. Declare the class as override.

  • Correct Answer
  • Declare the class as sealed

    Explanation
    C#.NET allows sealed attribute to be used as a part of class statement. Classes declared with sealed keyword cannot be used as based class for other classes. Most important reason to do this world be to prevent behavior of a class to be changed in any way.

  • Inheritance problems


    Search Results


    • 1. Which of the following are reuse mechanisms available in C#.NET?

      1. Inheritance
      2. Encapsulation
      3. Templates
      4. Containership
      5. Polymorphism

    • Options
    • A. 1, 4
    • B. 1, 3
    • C. 2, 4
    • D. 3, 5
    • Discuss
    • 2. What will be the output of the C#.NET code snippet given below?

      namespace CuriousTabConsoleApplication
      { 
          class Baseclass
          { 
              public void fun()
              { 
                  Console.Write("Base class" + " ");
              } 
          } 
          class Derived1: Baseclass
          { 
              new void fun()
              {
                  Console.Write("Derived1 class" + " "); 
              } 
          } 
          class Derived2: Derived1
          { 
              new void fun()
              { 
                  Console.Write("Derived2 class" + " ");
              }
          }
          class Program
          { 
              public static void Main(string[ ] args)
              { 
                  Derived2 d = new Derived2(); 
                  d.fun(); 
              } 
          } 
      }

    • Options
    • A. Base class
    • B. Derived1 class
    • C. Derived2 class
    • D. Base class Derived1 class
    • E. Base class Derived1 class Derived2 class
    • Discuss
    • 3. Which of the following will be the correct output for the C#.NET program given below?

      namespace CuriousTabConsoleApplication
      { 
          class Sample
          { 
              int i; 
              Single j; 
              public void SetData(int i, Single j)
              { 
                  i = i;
                  j = j;
              }
              public void Display()
              { 
                  Console.WriteLine(i + " " + j);
              } 
          } 
          class MyProgram
          { 
              static void Main(string[ ] args)
              { 
                  Sample s1 = new Sample();
                  s1.SetData(10, 5.4f); 
                  s1.Display(); 
              } 
          } 
      }

    • Options
    • A. 0 0
    • B. 10 5.4
    • C. 10 5.400000
    • D. 10 5
    • E. None of the above
    • Discuss
    • 4. Which of the following statements are correct about the this reference?

      1. this reference can be modified in the instance member function of a class.
      2. Static functions of a class never receive the this reference.
      3. Instance member functions of a class always receive a this reference.
      4. this reference continues to exist even after control returns from an instance member function.
      5. While calling an instance member function we are not required to pass the this reference explicitly.

    • Options
    • A. 1, 4
    • B. 2, 3, 5
    • C. 3, 4
    • D. 2, 5
    • E. None of these
    • Discuss
    • 5. Which of the following statements are correct?

      1. Instance members of a class can be accessed only through an object of that class.
      2. A class can contain only instance data and instance member function.
      3. All objects created from a class will occupy equal number of bytes in memory.
      4. A class can contain Friend functions.
      5. A class is a blueprint or a template according to which objects are created.

    • Options
    • A. 1, 3, 5
    • B. 2, 4
    • C. 3, 5
    • D. 2, 4, 5
    • E. None of these
    • Discuss
    • 6. 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 ***]
          } 
      }

    • Options
    • A. Console.WriteLine(base.i + " " + i);
    • B. Console.WriteLine(i + " " + base.i);
    • C. Console.WriteLine(mybase.i + " " + i);
    • D. Console.WriteLine(i + " " + mybase.i);
    • E. Console.WriteLine(i + " " + this.i);
    • Discuss
    • 7. Which statement will you add in the function fun() of class B, if it is to produce the output "Welcome to CuriousTab.com!"?

      namespace CuriousTabConsoleApplication
      { 
          class A
          {
              public void fun()
              {
                  Console.Write("Welcome");
              } 
          } 
          class B: A
          {
              public void fun()
              {
                  // [*** Add statement here ***]
                  Console.WriteLine(" to CuriousTab.com!");
              } 
          } 
          class MyProgram
          { 
              static void Main (string[ ] args)
              { 
                  B b = new B(); 
                  b.fun();
              } 
          } 
      }

    • Options
    • A. base.fun();
    • B. A::fun();
    • C. fun();
    • D. mybase.fun();
    • E. A.fun();
    • Discuss
    • 8. Which of the following statements are correct about the C#.NET code snippet given below?

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

    • Options
    • A. 1, 2, 5
    • B. 2, 3, 4
    • C. 3, 5
    • D. 4, 5
    • E. None of these
    • Discuss
    • 9. 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
    • 10. 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


    Comments

    There are no comments.

Enter a new Comment