logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Functions and Subroutines Comments

  • Question
  • Which of the following statements are correct about subroutines used in C#.NET?

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


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

  • Correct Answer
  • 2, 3, 5 


  • 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 i = 10;
                  double d = 34.340;
                  fun(i);
                  fun(d);
              }
              static void fun(double d)
              {
                  Console.WriteLine(d + " ");
              }
          }
      }

    • Options
    • A. 10.000000 34.340000
    • B. 10 34
    • C. 10 34.340
    • D. 10 34.34
    • Discuss
    • 2. 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
    • 3. 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
    • 4. 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
    • 5. 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
    • 6. 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 num = 1;
                  funcv(num); 
                  Console.Write(num + ", "); 
                  funcr(ref num); 
                  Console.Write(num + ", ");
              }
              static void funcv(int num)
              { 
                  num = num + 10; Console.Write(num + ", ");
              }
              static void funcr (ref int num)
              { 
                  num = num + 10; Console.Write(num + ", ");
              } 
          } 
      }

    • Options
    • A. 1, 1, 1, 1,
    • B. 11, 1, 11, 11,
    • C. 11, 11, 11, 11,
    • D. 11, 11, 21, 11,
    • E. 11, 11, 21, 21,
    • Discuss
    • 7. Which of the following statements are correct?

      1. An argument passed to a ref parameter need not be initialized first.
      2. Variables passed as out arguments need to be initialized prior to being passed.
      3. Argument that uses params keyword must be the last argument of variable argument list of a method.
      4. Pass by reference eliminates the overhead of copying large data items.
      5. To use a ref parameter only the calling method must explicitly use the ref keyword.

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

      namespace CuriousTabConsoleApplication
      {
          class Sample
          { 
              public static void fun1()
              { 
                  Console.WriteLine("CuriousTab1 method");
              }
              public void fun2()
              { 
                  fun1(); 
                  Console.WriteLine("CuriousTab2 method");
              }
              public void fun2(int i)
              { 
                  Console.WriteLine(i);
                  fun2(); 
              } 
          } 
          class MyProgram
          { 
              static void Main(string[ ] args)
              { 
                  Sample s = new Sample(); 
                  Sample.fun1(); 
                  s.fun2(123);
              } 
          } 
      }

    • Options
    • A.
      Tab1 method 
      123
      Tabl method 
      Tab2 method
    • B.
      Tab1 method 
      123
      Tab2 method
    • C.
      Tab2 method 
      123
      Tab2 method 
      Tabl method
    • D.
      Tabl method
      123
    • E.
      Tab2 method 
      123
      Tabl method
    • Discuss
    • 9. What will be the output of the C#.NET code snippet given below?

      namespace CuriousTabConsoleApplication
      { 
          class Sample
          { 
              static Sample()
              { 
                  Console.Write("Sample class ");
              }
              public static void CuriousTab1()
              { 
                  Console.Write("CuriousTab1 method ");
              } 
          } 
          class MyProgram
          { 
              static void Main(string[ ] args)
              { 
                  Sample.CuriousTab1();
              } 
          } 
      }

    • Options
    • A. Sample class Tab1 method
    • B. Tab1 method
    • C. Sample class
    • D. Tab1 method Sample class
    • E. Sample class Sample class
    • Discuss
    • 10. Is it possible for you to prevent an object from being created by using zero argument constructor?

    • Options
    • A. Yes
    • B. No
    • Discuss


    Comments

    There are no comments.

Enter a new Comment