A square matrix is having p number of rows. What is ‘j’ if aij is situated in the last row and second last column
p - 1
You know in a square matrix, the number of columns will be same as that of number of rows. Here the order is p × p. Given ‘j’ represents second last column number and the total number of columns is p. Therefore j = p-1.