

InterviewSolution
Saved Bookmarks
1. |
How would you express a pi as a character and an integer? Choose the correct code.(a) a=pi;b=’pi’;(b) a=22/7; b=pi;(c) a=3.1415; b=22/7;(d) a=3.1429;b=’pi’;This question was posed to me during an interview for a job.I'm obligated to ask this question of Managing Variables in portion MATLAB Basics of MATLAB |
Answer» Correct answer is (a) a=pi;b=’pi’; |
|