Question 9578 – Programming
February 13, 2024Programming
February 13, 2024Programming
| 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; | Theory Explanation. |
Correct Answer: A
