% 3.3 Consider the following vector in MATLAB: % vec = [1 0 0 0 0]; % Which of the following will produce an error? % a. vec(6) = 1; % b. vec(4) = []; % c. vec(0) = 1; % d. vec([4 5]) = 1; % e. vec = [[6 [5] vec]]; disp ('C produces an error')