

InterviewSolution
Saved Bookmarks
1. |
Which symbol is used to initialise a variable?(a) =(b) ->(c) ==(d) initThis question was posed to me during an online exam.My doubt stems from Variables and Assignments topic in chapter MATLAB Basics of MATLAB |
Answer» RIGHT CHOICE is (a) = To ELABORATE: The symbol, ‘=’, is used to initialise a variable with a particular data type. ‘==’ checks whether the LEFT hand side is equal to its’ right hand side. ‘init’ is a SEPARATE function in MATLAB. |
|