A student is using the algorithm below
A student is using the algorithm below. LINE 10 INPUT A, B LINE 20 LET C = A – B LINE 30 LET D = A + B
LINE 40 LET E = (D*D) – (C * C)
LINE 50 LET F = E / 4
LINE 60 PRINT F
LINE 70 END
Trace the algorithm in the case where A = 5 and B = 3. +6 points
___A____ ____B____ ___C___ ___D____ ___E___ ___F____ _(Print)___
LINE 10 _____________________________________________________________________
LINE 20 _____________________________________________________________________
LINE 30 _____________________________________________________________________
LINE 40 _____________________________________________________________________
LINE 50 _____________________________________________________________________
LINE 60 _____________________________________________________________________
LINE 70 __