Home / C# Programming / Functions and Subroutines :: Discussion

Discussion :: Functions and Subroutines

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

    namespace FreshergateConsoleApplication 
    {  
       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;       
         }  
      } 
    }
    

  2. A.

    5, 6

    B.

    5, 36

    C.

    25, 36

    D.

    25, 0

    E.

    5, 0

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment