logo

CuriousTab

CuriousTab

Constructors problems


  • 1. Which of the following statements is correct?

  • Options
  • A. A constructor can be used to set default values and limit instantiation.
  • B. C# provides a copy constructor.
  • C. Destructors are used with classes as well as structures.
  • D. A class can have more than one destructor.
  • Discuss
  • 2. Which of the following statements is correct about the C#.NET code snippet given below?

    namespace CuriousTabConsoleApplication
    { 
        class Sample
        { 
            public int func()
            {
                return 1;
            } 
            public Single func()
            { 
                return 2.4f ;
            } 
        } 
        class Program
        { 
            static void Main(string[ ] args)
            {
                Sample s1 = new Sample(); 
                int i;
                i = s1.func(); 
                Single j; 
                j = s1.func(); 
            } 
        } 
    }

  • Options
  • A. func() is a valid overloaded function.
  • B. Overloading works only in case of subroutines and not in case of functions.
  • C. func() cannot be considered overloaded because: return value cannot be used to distinguish between two overloaded functions.
  • D. The call to i = s1.func() will assign 1 to i.
  • E. The call j = s1.func() will assign 2.4 to j.
  • Discuss
  • 3. Which of the following statements is correct about constructors in C#.NET?

  • Options
  • A. A constructor cannot be declared as private.
  • B. A constructor cannot be overloaded.
  • C. A constructor can be a static constructor.
  • D. A constructor cannot access static data.
  • E. this reference is never passed to a constructor.
  • Discuss
  • 4. Can static procedures access instance data?

  • Options
  • A. Yes
  • B. No
  • Discuss
  • 5. How many times can a constructor be called during lifetime of the object?

  • Options
  • A. As many times as we call it.
  • B. Only once.
  • C. Depends upon a Project Setting made in Visual Studio.NET.
  • D. Any number of times before the object gets garbage collected.
  • E. Any number of times before the object is deleted.
  • Discuss
  • 6. Which of the following statements are correct about constructors in C#.NET?

    1. Constructors cannot be overloaded.
    2. Constructors always have the name same as the name of the class.
    3. Constructors are never called explicitly.
    4. Constructors never return any value.
    5. Constructors allocate space for the object in memory.

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

  • Options
  • A. There is one garbage collector per program running in memory.
  • B. There is one common garbage collector for all programs.
  • C. An object is destroyed by the garbage collector when only one reference refers to it.
  • D. We have to specifically run the garbage collector after executing Visual Studio.NET.
  • Discuss
  • 8. Which of the following statements are correct about static functions?

    1. Static functions can access only static data.
    2. Static functions cannot call instance functions.
    3. It is necessary to initialize static data.
    4. Instance functions can call static functions and access static data.
    5. this reference is passed to static functions.

  • Options
  • A. 1, 2, 4
  • B. 2, 3, 5
  • C. 3, 4
  • D. 4, 5
  • E. None of these
  • Discuss

First 2