logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Functions and Subroutines Comments

  • Question
  • Which of the following will be the correct output for the C#.NET program given below?

    namespace CuriousTabConsoleApplication
    { 
        class SampleProgram
        { 
            static void Main(string[] args)
            {
                int a = 5; 
                int s = 0, c = 0;
                Proc(a, ref s, ref c);
                Console.WriteLine(s + " " + c);
            }
            static void Proc(int x, ref int ss, ref int cc)
            {
                ss = x * x;
                cc = x * x * x;
            } 
        } 
    }


  • Options
  • A. 0 0
  • B. 25 25
  • C. 125 125
  • D. 25 125
  • E. None of the above

  • Correct Answer
  • 25 125 


  • Functions and Subroutines problems


    Search Results


    • 1. Which of the following statements are correct?

      1. The switch statement is a control statement that handles multiple selections and enumerations by passing control to one of the case statements within its body.
      2. The goto statement passes control to the next iteration of the enclosing iteration statement in which it appears.
      3. Branching is performed using jump statements which cause an immediate transfer of the program control.
      4. A common use of continue is to transfer control to a specific switch-case label or the default label in a switch statement.
      5. The do statement executes a statement or a block of statements enclosed in {} repeatedly until a specified expression evaluates to false.

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

      if (age > 18 || no < 11)
          a = 25;
      1. The condition no < 11 will get evaluated only if age > 18 evaluates to False.
      2. The condition no < 11 will get evaluated if age > 18 evaluates to True.
      3. The statement a = 25 will get evaluated if any one one of the two conditions is True.
      4. || is known as a short circuiting logical operator.
      5. The statement a = 25 will get evaluated only if both the conditions are True.

    • Options
    • A. 1, 4, 5
    • B. 2, 4
    • C. 1, 3, 4
    • D. 2, 3, 5
    • E. None of these
    • Discuss
    • 4. What does the following C#.NET code snippet will print?

      int i = 0, j = 0; 
      
      label:
          i++;
          j+=i;
      if (i < 10)
      {
          Console.Write(i +" ");
          goto label; 
      }

    • Options
    • A. Prints 1 to 9
    • B. Prints 0 to 8
    • C. Prints 2 to 8
    • D. Prints 2 to 9
    • E. Compile error at label:.
    • Discuss
    • 5. Which of the following code snippets are the correct way to determine whether a is Odd or Even?

      1. int a;
        String res; 
        if (a % 2 == 0)
            res = "Even"; 
        else 
            res = "Odd";
      2. int a; 
        String res; 
        if (a Mod 2 == 0) 
            res = "Even"; 
        else
            res = "Odd";
      3. int a;
        Console.WriteLine(a Mod 2 == 0? "Even": "Odd");
      4. int a; 
        String res;
        a % 2 == 0? res = "Even" : res = "Odd";
        Console.WriteLine(res);

    • Options
    • A. 1, 3
    • B. 1 Only
    • C. 2, 3
    • D. 4 Only
    • E. None of these
    • Discuss
    • 6. 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
    • 7. 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
    • 8. What will be the output of the C#.NET code snippet given below?

      namespace CuriousTabConsoleApplication
      {
          class SampleProgram
          {
              static void Main(string[ ] args)
              {
                  object[] o = new object[] {"1", 4.0, "India", 'B'};
                  fun (o);
              }
              static void fun (params object[] obj)
              {
                  for (int i = 0; i < obj.Length-1; i++)
                  Console.Write(obj[i] + " ");
              }
          }
      }

    • Options
    • A. 1 4.0 India B
    • B. 1 4.0 India
    • C. 1 4 India
    • D. 1 India B
    • Discuss
    • 9. What will be the output of the C#.NET code snippet given below?

      namespace CuriousTabConsoleApplication
      {
          class SampleProgram
          {
              static void Main(string[ ] args)
              {
                  int i;
                  int res = fun(out i);
                  Console.WriteLine(res);
              }
              static int fun (out int i)
              {
                  int s = 1;
                  i = 7;
                  for(int j = 1; j <= i; j++)
                  {
                      s = s * j;
                  }
                  return s;
              } 
          } 
      }

    • Options
    • A. 1
    • B. 7
    • C. 8
    • D. 720
    • E. 5040
    • Discuss
    • 10. How many values is a subroutine capable of returning?

    • Options
    • A. Depends upon how many params arguments does it use.
    • B. Any number of values.
    • C. Depends upon how many ref arguments does it use.
    • D. 0
    • E. 1
    • Discuss


    Comments

    There are no comments.

Enter a new Comment