The correct answer is (a) Computational difference
For explanation: MATLAB follows a precedence of operators while doing any computation. So (9*1-8) is done like this: 9*1-8=9-8=9. But (9-1*8) is done like this: 9-1*8=9-8=1. Even though the answers are same, there is a computational difference between evaluation of the two expressions in MATLAB.