What is the state of a at the end of this code?
a = [1 2; 3 4]; b = a(:,2); c = b + 3; a(1:2,1) = c;
:
a = 5 7
a = 5 2 7 4
a = 6 3 7 4
a = 6 7