logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Constructors Comments

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

  • Correct Answer
  • Only once. 


  • Constructors problems


    Search Results


    • 1. Can static procedures access instance data?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 2. 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
    • 3. 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
    • 4. 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
    • 5. Which of the following statements are correct about the C#.NET code snippet given below?

      class Sample
      {
          static int i;
          int j;
          public void proc1()
          {
              i = 11; 
              j = 22;
          }
          public static void proc2()
          {
              i = 1;
              j = 2;
          }
          static Sample()
          {
              i = 0; 
              j = 0;
          }
      }

    • Options
    • A. i cannot be initialized in proc1().
    • B. proc1() can initialize i as well as j.
    • C. j can be initialized in proc2().
    • D. The constructor can never be declared as static.
    • E. proc2() can initialize i as well as j.
    • 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
    • 9. Which of the following statements are correct about the C#.NET code snippet given below?

      int[ , ] intMyArr = {{7, 1, 3}, {2, 9, 6}};
      1. intMyArr represents rectangular array of 2 rows and 3 columns.
      2. intMyArr.GetUpperBound(1) will yield 2.
      3. intMyArr.Length will yield 24.
      4. intMyArr represents 1-D array of 5 integers.
      5. intMyArr.GetUpperBound(0) will yield 2.

    • Options
    • A. 1, 2
    • B. 2, 3
    • C. 2, 5
    • D. 1, 4
    • E. 3, 4
    • Discuss
    • 10. Which of the following statements is correct about the array declaration given below?

         int[][][] intMyArr = new int[2][][];

    • Options
    • A. intMyArr refers to a 2-D jagged array containing 2 rows.
    • B. intMyArr refers to a 2-D jagged array containing 3 rows.
    • C. intMyArr refers to a 3-D jagged array containing 2 2-D jagged arrays.
    • D. intMyArr refers to a 3-D jagged array containing three 2-D jagged arrays.
    • E. intMyArr refers to a 3-D jagged array containing 2 2-D rectangular arrays.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment