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?      n = 300;   A = zeros(n,n);   for k = 1:n      for j = k:n         A(k,j) = 1-2*(k+j);         A(j,k) = -A(k,j);      end   end     A(249,1)