logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Functions and Subroutines Comments

  • Question
  • Which of the following CANNOT occur multiple number of times in a program?


  • Options
  • A. namespace
  • B. Entrypoint
  • C. Class
  • D. Function
  • E. Subroutine

  • Correct Answer
  • Entrypoint 


  • Functions and Subroutines problems


    Search Results


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

      namespace CuriousTabConsoleApplication
      { 
          class SampleProgram
          { 
              static void Main(string[] args)
              { 
                  int[]arr = newint[]{ 1, 2, 3, 4, 5 }; 
                  fun(ref arr);
              }
              static void fun(ref int[] a)
              { 
                  for (int i = 0; i < a.Length; i++)
                  { 
                      a[i] = a[i] * 5; 
                      Console.Write(a[ i ] + " "); 
                  } 
              } 
          } 
      }

    • Options
    • A. 1 2 3 4 5
    • B. 6 7 8 9 10
    • C. 5 10 15 20 25
    • D. 5 25 125 625 3125
    • E. 6 12 18 24 30
    • 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 = 5;
                  int j;
                  fun1(ref i);
                  fun2(out j);
                  Console.WriteLine(i + ", " + j);
              }
              static void funl(ref int x)
              {
                  x = x * x;
              }
              static void fun2(out int x)
              {
                  x = 6; 
                  x = x * x; 
              }
          }
      }

    • Options
    • A. 5, 6
    • B. 5, 36
    • C. 25, 36
    • D. 25, 0
    • E. 5, 0
    • Discuss
    • 3. A function can be used in an expression, whereas a subroutine cannot be.

    • Options
    • A. True
    • B. False
    • Discuss
    • 4. A function returns a value, whereas a subroutine cannot return a value.

    • Options
    • A. True
    • B. False
    • Discuss
    • 5. If a function fun() is to sometimes receive an int and sometimes a double then which of the following is the correct way of defining this function?

    • Options
    • A.
      static void fun(object i)
      { ... }
    • B.
      static void fun(int i)
      { ... }
    • C.
      static void fun(double i, int j)
      { ... }
    • D.
      static void fun(int i, double j)
      { ... }
    • E.
      static void fun(int i, double j, )
      { ... }
    • Discuss
    • 6. How many values is a function capable of returning?

    • Options
    • A. 1
    • B. 0
    • C. Depends upon how many params arguments does it use.
    • D. Any number of values.
    • E. Depends upon how many ref arguments does it use.
    • Discuss
    • 7. Which of the following statements are correct about functions used in C#.NET?

      1. Function definitions cannot be nested.
      2. Functions can be called recursively.
      3. If we do not return a value from a function then a value -1 gets returned.
      4. To return the control from middle of a function exit function should be used.
      5. Function calls can be nested.

    • Options
    • A. 1, 2, 5
    • B. 2, 3, 5
    • C. 2, 3
    • D. 4, 5
    • E. None of these
    • Discuss
    • 8. If a procedure 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 procedure?

    • Options
    • A.
      fun(int i, Single j, double k) decimal 
      { ... }
    • B.
      static decimal fun(int i, Single j, double k) 
      { ... }
    • C.
      fun(int i, Single j, double k) 
      {
          ...
          return decimal; 
      }
    • D.
      static decimal fun(int i, Single j, double k) decimal 
      { ... }
    • E. A procedure can never return a value.
    • Discuss
    • 9. 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
    • 10. Which of the following statements are correct?

      1. C# allows a function to have arguments with default values.
      2. C# allows a function to have variable number of arguments.
      3. Omitting the return value type in method definition results into an exception.
      4. Redefining a method parameter in the method's body causes an exception.
      5. params is used to specify the syntax for a function with variable number of arguments.

    • Options
    • A. 1, 3, 5
    • B. 3, 4, 5
    • C. 2, 5
    • D. 4, 5
    • E. None of these
    • Discuss


    Comments

    There are no comments.

Enter a new Comment