Home / C++ Programming / Functions - C++ :: Discussion

Discussion :: Functions - C++

  1. Which of the following statement is correct about the program given below?

     #include 
     class PowerFinder
     {  
       public:  
       void Power(int x = 1, int y = 1)      
       {       
           int P = 1, i = 1;         
           while(++i coutint main() 
           {                   
          PowerFinder FP;     
          FP.Power(2, 6);     
          return 0;
     }
    

  2. A.

    The program will print the output 12.

    B.

    The program will print the output 16.

    C.

    The program will print the output 32.

    D.

    The program will print the output 36.

    E.

    The program will execute infinite time.

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment