For the following MATLAB program, what is the output result…

Questions

Fоr the fоllоwing MATLAB progrаm, whаt is the output result for det(A)?      n = 5;   A = zeros(n);   for i = 1:n      for j = i:n         A(i,j) = i+j-3;      end   end   det(A)