logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Inheritance See What Others Are Saying!
  • Question
  • 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


  • Options
  • A. True
  • B. False

  • Correct Answer
  • True 

    Explanation
    This is because the member functions are always searched in the derived class and then in the base class.

  • More questions

    • 1. If Sample class has a Length property with get accessor then which of the following statements will work correctly?

    • Options
    • A.
      Sample m = new Sample(); 
      m.Length = 10;
    • B.
      Sample m = new Sample(); 
      m.Length = m.Length + 20;
    • C.
      Sample m = new Sample(); 
      int l;
      l = m.Length;
    • D.
      Sample.Length = 20;
    • E.
      Console.WriteLine(Sample.Length);
    • Discuss
    • 2. A derived class can stop virtual inheritance by declaring an override as

    • Options
    • A. inherits
    • B. extends
    • C. inheritable
    • D. not inheritable
    • E. sealed
    • Discuss
    • 3. Which of the following can be declared in an interface?

      1. Properties
      2. Methods
      3. Enumerations
      4. Events
      5. Structures

    • Options
    • A. 1, 3
    • B. 1, 2, 4
    • C. 3, 5
    • D. 4, 5
    • Discuss
    • 4. Creating a derived class from a base class requires fundamental changes to the base class.

    • Options
    • A. True
    • B. False
    • Discuss
    • 5. Which of the following code snippets are the correct way to determine whether a is Odd or Even?

      1. int a;
        String res; 
        if (a % 2 == 0)
            res = "Even"; 
        else 
            res = "Odd";
      2. int a; 
        String res; 
        if (a Mod 2 == 0) 
            res = "Even"; 
        else
            res = "Odd";
      3. int a;
        Console.WriteLine(a Mod 2 == 0? "Even": "Odd");
      4. int a; 
        String res;
        a % 2 == 0? res = "Even" : res = "Odd";
        Console.WriteLine(res);

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

      int a = 10, b = 20, c = 30; 
      int res = a < b? a < c? c : a : b; 
      Console.WriteLine(res);

    • Options
    • A. 10
    • B. 20
    • C. 30
    • D. Compile Error / Syntax Error
    • Discuss
    • 7. 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.
    • Discuss
    • 8. There is no private or protected inheritance in C#.NET.

    • Options
    • A. True
    • B. False
    • Discuss
    • 9. Which of the following is NOT an Arithmetic operator in C#.NET?

    • Options
    • A. **
    • B. +
    • C. /
    • D. %
    • E. *
    • Discuss
    • 10. The space required for structure variables is allocated on stack.

    • Options
    • A. True
    • B. False
    • Discuss


    Comments

    There are no comments.

Enter a new Comment