logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Classes and Objects See What Others Are Saying!
  • Question
  • Which of the following statements are correct about the C#.NET code snippet given below?

    namespace CuriousTabConsoleApplication
    { 
        class Sample
        { 
            int i, j; 
            public void SetData(int ii, int jj)
            {
                this.i = ii;
                this.j = jj 
            } 
        } 
        class MyProgram
        { 
            static void Main(string[ ] args)
            { 
                Sample s1 = new Sample(); 
                s1.SetData(10, 2); 
                Sample s2 = new Sample(); 
                s2.SetData(5, 10); 
            } 
        } 
    }


  • Options
  • A. The code will not compile since we cannot explicitly use this.
  • B. Using this in this program is necessary to properly set the values in the object.
  • C. The call to SetData() is wrong since we have not explicitly passed the this reference to it.
  • D. The definition of SetData() is wrong since we have not explicitly collected the this reference.
  • E. Contents of this will be different during each call to SetData().

  • Correct Answer
  • Contents of this will be different during each call to SetData()


  • More questions

    • 1. 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
    • 2. What will be the output of the C#.NET code snippet given below?

      namespace CuriousTabConsoleApplication
      {
          class SampleProgram
          {
              static void Main(string[ ] args)
              {
                  int i, j;
                  int[ , ] arr = new int[ 2, 2 ];
                  for(i = 0; i < 2; ++i)
                  {
                      for(j = 0; j < 2; ++j)
                      {
                          arr[i, j] = i * 17 + i * 17;
                          Console.Write(arr[ i, j ] + " ");
                      }
                  }
              }
          }
      }

    • Options
    • A. 0 0 34 34
    • B. 0 0 17 17
    • C. 0 0 0 0
    • D. 17 17 0 0
    • E. 34 34 0 0
    • Discuss
    • 3. Which of the following is the correct way to rewrite the following C#.NET code snippet given below?

      int i = 0; 
      do
      {
          Console.WriteLine(i);
          i+ = 1; 
      } while (i <= 10);

    • Options
    • A.
      int i = 0; 
      do
      {
          Console.WriteLine(i);
      } until (i <= 10);
    • B.
      int i;
      for (i = 0; i <= 10 ; i++)
          Console.WriteLine(i);
    • C.
      int i = 0; 
      while (i <= 11)
      {
          Console.WriteLine(i);
          i += 1; 
      }
    • D.
      int i = 0;
      do while ( i <= 10)
      {
          Console.WriteLine(i); 
          i += 1;
      }
    • E.
      int i = 0;
      do until (i <= 10)
      {
          Console.WriteLine(i);
          i+=1; 
      }
    • Discuss
    • 4. The C#.NET code snippet given below generates ____ numbers series as output?

      int i = 1, j = 1, val;
      while (i < 25)
      {
          Console.Write(j + " ");
          val = i + j;
          j = i;
          i = val;
      }

    • Options
    • A. Prime
    • B. Fibonacci
    • C. Palindrome
    • D. Odd
    • E. Even
    • Discuss
    • 5. The way a derived class member function can access base class public members, the base class member functions can access public member functions of derived class.

    • Options
    • A. True
    • B. False
    • Discuss
    • 6. Which of the following statements are correct about functions and subroutines used in C#.NET?

      1. A function cannot be called from a subroutine.
      2. The ref keyword causes arguments to be passed by reference.
      3. While using ref keyword any changes made to the parameter in the method will be reflected in that variable when control passes back to the calling method.
      4. A subroutine cannot be called from a function.
      5. Functions and subroutines can be called recursively.

    • Options
    • A. 1, 2, 4
    • B. 2, 3, 5
    • C. 3, 5
    • D. 4, 5
    • E. None of these
    • Discuss
    • 7. If a function fun() is to receive an int, a Single & a double and it is to return a decimal then which of the following is the correct way of defining this function?

    • Options
    • A.
      decimal static fun(int i, Single j, double k)
      { ... }
    • B.
      decimal fun(int i, Single j, double k)
      { ... }
    • C.
      static decimal fun(int i, Single j, double k)
      { ... }
    • D.
      static decimal fun(int i, Single j, double k) decimal
      { ... }
    • E.
      static fun(int i, Single j, double k)
      { 
          ... 
          return decimal;
      }
    • Discuss
    • 8. What is the size of a Decimal?

    • Options
    • A. 4 byte
    • B. 8 byte
    • C. 16 byte
    • D. 32 byte
    • Discuss
    • 9. Which of the following is the correct way to call subroutine MyFun() of the Sample class given below?

      class Sample
      {
          public void MyFun(int i, Single j)
          {
              Console.WriteLine("Welcome to CuriousTab !");
          }
      }

    • Options
    • A.
      delegate void del(int i);
      Sample s = new Sample();
      del d = new del(ref s.MyFun);
      d(10, 1.1f);
    • B.
      delegate void del(int i, Single j);
      del d;
      Sample s = new Sample();
      d = new del(ref s.MyFun);
      d(10, 1.1f);
    • C.
      Sample s = new Sample();
      delegate void d = new del(ref MyFun);
      d(10, 1.1f);
    • D.
      delegate void del(int i, Single]);
      Sample s = new Sample();
      del = new delegate(ref MyFun);
      del(10, 1.1f);
    • Discuss
    • 10. Suppose a Generic class called SortObjects is to be made capable of sorting objects of any type (Integer, Single, Byte etc.). Which of the following programming constructs should be used to implement the comparision function?

    • Options
    • A. Namespace
    • B. Interface
    • C. Encapsulation
    • D. Delegate
    • E. Attribute
    • Discuss


    Comments

    There are no comments.

Enter a new Comment