Vectors (6 pts):

What does this code display when run?

height = 63;
weight = 125;
if (height > 70) & (weight == 125)
   disp('Red Sox')
else
   disp('Yankees')
end
disp('Cubs')