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

Discussion :: Functions and Subroutines

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

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

  2. A.

    0 0

    B.

    25 25

    C.

    125 125

    D.

    25 125

    E.

    None of the above

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment