logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Structures See What Others Are Saying!
  • Question
  • Which of the following is the correct way of setting values into the structure variable e defined below?

    struct Emp
    {
        public String name;
        public int age;
        public Single sal; 
    }
    Emp e = new Emp();


  • Options
  • A.
    e.name = "Amol"; 
    e.age = 25; 
    e.sal = 5500;
  • B.
    With e
    {
        .name = "Amol";
        .age = 25;
        .sal = 5500; 
    }
  • C.
    With emp e
    {
        .name = "Amol";
        .age = 25;
        .sal = 5500; 
    }
  • D.
    e -> name = "Amol"; 
    e -> age = 25;
    e -> sal = 5500;
  • E.
    name = "Amol"; 
    age = 25;
    sal = 5500;

  • Correct Answer
  • e.name = "Amol"; 
    e.age = 25; 
    e.sal = 5500;
     


  • More questions

    • 1. What will be the output of the C#.NET code snippet given below?

      int i, j = 1, k;
      for (i = 0; i < 5; i++)
      {
          k = j++ + ++j;
          Console.Write(k + " ");
      }

    • Options
    • A. 8 4 16 12 20
    • B. 4 8 12 16 20
    • C. 4 8 16 32 64
    • D. 2 4 6 8 10
    • Discuss
    • 2. Which of the following statements are correct about exception handling in C#.NET?

      1. If an exception occurs then the program terminates abruptly without getting any chance to recover from the exception.
      2. No matter whether an exception occurs or not, the statements in the finally clause (if present) will get executed.
      3. A program can contain multiple finally clauses.
      4. A finally clause is written outside the try block.
      5. finally clause is used to perform clean up operations like closing the network/database connections.

    • Options
    • A. 1 only
    • B. 2 only
    • C. 2 and 5 only
    • D. 3 and 4 only
    • E. None of the above
    • Discuss
    • 3. Which of the following will be the correct output for the C#.NET program given below?

      namespace CuriousTabConsoleApplication
      { 
          struct Sample
          { 
              public int i;
          }
          class MyProgram
          { 
              static void Main(string[] args)
              {
                  Sample x = new Sample(); 
                  x.i = 10; 
                  fun(ref x); 
                  Console.Write(x.i + " ");
              }
              public static void fun(ref Sample y)
              { 
                  y.i = 20;
                  Console.Write(y.i + " "); 
              } 
          } 
      }

    • Options
    • A. 20 10
    • B. 10 20
    • C. 10 10
    • D. 20 20
    • E. None of the above
    • Discuss
    • 4. Which of the following statements are correct about the exception reported below?
      Unhandled Exception: System.lndexOutOfRangeException:
      Index was outside the bounds of the array.
      at CuriousTabConsoleApplication.Program.Main(String[] args) in
      D:\ConsoleApplication\Program.cs:line 14

      1. The program did not handle an exception called IndexOutOfRangeException.
      2. The program execution continued after the exception occurred.
      3. The exception occurred in line number 14.
      4. In line number 14, the program attempted to access an array element which was beyond the bounds of the array.
      5. The CLR could not handle the exception.

    • Options
    • A. 1 only
    • B. 1, 2 and 3 only
    • C. 2 and 5 only
    • D. 1, 3 and 4 only
    • E. None of the above
    • Discuss
    • 5. Which of the following statements is incorrect about delegate?

    • Options
    • A. Delegates are reference types.
    • B. Delegates are object oriented.
    • C. Delegates are type-safe.
    • D. Delegates serve the same purpose as function pointers in C and pointers to member function operators in C++.
    • E. Only one method can be called using a delegate.
    • Discuss
    • 6. 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
    • 7. 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
    • 8. 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
    • 9. Private members of base class cannot be accessed by derived class member functions or objects of derived class.

    • Options
    • A. True
    • B. False
    • Discuss
    • 10. 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


    Comments

    There are no comments.

Enter a new Comment