Question

In the MATLAB Command Window, if you type the following commands, what would be the result?
scores = [80 90 50 70 80 60 65 95 70 40];
for i=1:1:10
if scores (i) >60
fprintf(' %g PASSING ', scores (i));
else
fprintf(' %g FAILING ', scores (i))
end
end

Answer

This answer is hidden. It contains 90 characters.