logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Polymorphism See What Others Are Saying!
  • Question
  • Which of the followings is the correct way to overload + operator?


  • Options
  • A.
    public sample operator + ( sample a, sample b )
  • B.
    public abstract operator + ( sample a, sample b)
  • C.
    public abstract sample operator + (sample a, sample b )
  • D.
    public static sample operator + ( sample a, sample b )
  • E. All of the above

  • Correct Answer
  • public static sample operator + ( sample a, sample b )
     


  • More questions

    • 1. Which of the following jobs are NOT performed by Garbage Collector?

      1. Freeing memory on the stack.
      2. Avoiding memory leaks.
      3. Freeing memory occupied by unreferenced objects.
      4. Closing unclosed database collections.
      5. Closing unclosed files.

    • Options
    • A. 1, 2, 3
    • B. 3, 5
    • C. 1, 4, 5
    • D. 3, 4
    • Discuss
    • 2. 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
    • 3. Which of the following will be the correct output for the program given below?

      namespace CuriousTabConsoleApplication
      { 
          struct Sample
          {
              public int i;
          }
          class MyProgram
          { 
              static void Main(string[] args)
              {
                  Sample x = new Sample();
                  Sample y;
                  x.i = 9;
                  y = x;
                  y.i = 5;
                  Console.WriteLine(x.i + " " + y.i); 
              } 
          } 
      }

    • Options
    • A. 9 9
    • B. 9 5
    • C. 5 5
    • D. 5 9
    • E. None of the above
    • Discuss
    • 4. Private members of base class cannot be accessed by derived class member functions or objects of derived class.

    • Options
    • A. True
    • B. False
    • Discuss
    • 5. Which of the following statements are correct about the C#.NET program given below?

      namespace CuriousTabConsoleApplication
      { 
          class SampleProgram
          { 
              static void Main(string[ ] args)
              { 
                  int a = 5;
                  int s = 0, c = 0; 
                  s, c = fun(a); 
                  Console.WriteLine(s +" " + c) ;
              }
              static int fun(int x)
              {
                  int ss, cc;
                  ss = x * x; cc = x * x * x; 
                  return ss, cc;
              } 
          } 
      }
      1. An error will be reported in the statement s, c = fun(a); since multiple values returned from a function cannot be collected in this manner.
      2. It will output 25 125.
      3. It will output 25 0.
      4. It will output 0 125.
      5. An error will be reported in the statement return ss, cc; since a function cannot return multiple values.

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

      String s1="Kicit";
      Console.Write(s1.IndexOf('c') + " "); 
      Console.Write(s1.Length);

    • Options
    • A. 3 6
    • B. 2 5
    • C. 3 5
    • D. 2 6
    • E. 3 7
    • Discuss
    • 7. Which of the following is correct way to convert a String to an int?

      1. String s = "123"; 
        int i;
        i = (int)s;
      2. String s = "123";
        int i;
        i = int.Parse(s);
      3. String s = "123"; 
        int i;
        i = Int32.Parse(s);
      4. String s = "123"; 
        int i;
        i = Convert.ToInt32(s);
      5. String s = "123"; 
        int i;
        i = CInt(s);

    • Options
    • A. 1, 3, 5
    • B. 2, 4
    • C. 3, 5
    • D. 2, 3, 4
    • Discuss
    • 8. How will you complete the foreach loop in the C#.NET code snippet given below such that it correctly prints all elements of the array a?

          int[][]a = new int[2][];
          a[0] = new int[4]{6, 1 ,4, 3};
          a[1] = new int[3]{9, 2, 7}; 
          foreach (int[ ] i in a)
          {
              /* Add loop here */
              Console.Write(j + " ");
              Console.WriteLine(); 
          }

    • Options
    • A. foreach (int j = 1; j < a(0).GetUpperBound; j++)
    • B. foreach (int j = 1; j < a.GetUpperBound (0); j++)
    • C. foreach (int j in a.Length)
    • D. foreach (int j in i)
    • E. foreach (int j in a.Length -1)
    • Discuss
    • 9. An Account class has a property called accountNo and acc is a reference to a bank object and we want the C#.NET code snippet given below to work. Which of the following options will ensure this functionality?

      acc.accountNo = 10; 
      Console.WriteLine(acc.accountNo);

    • Options
    • A. Declare accountNo property with both get and set accessors.
    • B. Declare accountNo property with only get accessor.
    • C. Declare accountNo property with get, set and normal accessors.
    • D. Declare accountNo property with only set accessor.
    • E. None of the above
    • Discuss
    • 10. Which of the following statements is correct about an interface?

    • Options
    • A. One interface can be implemented in another interface.
    • B. An interface can be implemented by multiple classes in the same program.
    • C. A class that implements an interface can explicitly implement members of that interface.
    • D. The functions declared in an interface have a body.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment