

InterviewSolution
Saved Bookmarks
1. |
From the following desktop view of workspace, choose the correct code.(a) a=10;b=’pi’;syms c; d=[1,2;0;4];(b) a=10;b=’pi’;syms c; d=[1,2;0,4];(c) a=10;b=pi;syms (c); d=[1,2;0,4];(d) a=10;b=’pi’;syms c; d=[1,2;0,4];I have been asked this question in exam.The doubt is from Managing Variables topic in portion MATLAB Basics of MATLAB |
Answer» Correct option is (a) a=10;b=’pi’;SYMS c; d=[1,2;0;4]; |
|