rbarth38ow48d6 rbarth38ow48d6 11-09-2017 Mathematics contestada For the algorithm below, compute the number of multiplications performed, as well as the final value of s. p ← 1 s ← 0 for i is in {1, 2, 3, 4} do p ← p · 3 s ← s + p number of multiplications final value of s s =