...
Question 9578 – Programming
February 13, 2024
Programming
February 13, 2024
Question 9578 – Programming
February 13, 2024
Programming
February 13, 2024

Programming

Question 6

What function of x, n is computed by this program?

 Function what (x, n:integer): integer:
 Var
     value : integer;
     begin
     value:=1
     if n>0 then
 begin
     if n mod 2 = 1 then
     value:=value*x;
     value:=value*what(x*x, n div 2);
     end;
     what:value
     end; 
A
Theory Explanation.
Correct Answer: A

Leave a Reply

Your email address will not be published. Required fields are marked *