logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Constructors Comments

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

  • Correct Answer
  • proc1() can initialize i as well as j


  • Constructors problems


    Search Results


    • 1. Which of the following statements are correct about static functions?

    • Options
    • A. Static functions are invoked using objects of a class.
    • B. Static functions can access static data as well as instance data.
    • C. Static functions are outside the class scope.
    • D. Static functions are invoked using class.
    • Discuss
    • 2. In which of the following should the methods of a class differ if they are to be treated as overloaded methods?

      1. Type of arguments
      2. Return type of methods
      3. Number of arguments
      4. Names of methods
      5. Order of arguments

    • Options
    • A. 2, 4
    • B. 3, 5
    • C. 1, 3, 5
    • D. 3, 4, 5
    • Discuss
    • 3. Is it possible to invoke Garbage Collector explicitly?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 4. Which of the following statements is correct about constructors?

    • Options
    • A. If we provide a one-argument constructor then the compiler still provides a zero-argument constructor.
    • B. Static constructors can use optional arguments.
    • C. Overloaded constructors cannot use optional arguments.
    • D. If we do not provide a constructor, then the compiler provides a zero-argument constructor.
    • Discuss
    • 5. Which of the following ways to create an object of the Sample class given below will work correctly?

      class Sample
      {
          int i;
          Single j;
          double k;
          public Sample (int ii, Single jj, double kk)
          {
              i = ii;
              j = jj;
              k = kk;
          } 
      }

    • Options
    • A. Sample s1 = new Sample();
    • B. Sample s1 = new Sample(10);
    • C. Sample s2 = new Sample(10, 1.2f);
    • D. Sample s3 = new Sample(10, 1.2f, 2.4);
    • E. Sample s1 = new Sample(, , 2.5);
    • Discuss
    • 6. 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
    • 7. 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
    • 8. 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
    • 9. Can static procedures access instance data?

    • Options
    • A. Yes
    • B. No
    • Discuss
    • 10. 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


    Comments

    There are no comments.

Enter a new Comment