Question: 114
(Choose 1 answer)
(See picture)
A. 220
Β. 110
C. 330
D. 440
procedure SUM(n: int)t := 0 for i:=1 to n do forj := 1 to n-1 do t := t*i + j
return t
E. None of the other choices is correct
Given an algorithm
How many additions and multiplications are used if n = 11?