

MCQOPTIONS
Saved Bookmarks
This section includes 3 Mcqs, each offering curated multiple-choice questions to sharpen your MATLAB Questions and Answers knowledge and support exam preparation. Choose a topic below to get started.
1. |
What are Max and Min in the Workspace shown below? |
A. | They show the maximum and minimum value of the variable |
B. | The show the maximum and minimum length of the variable |
C. | They show the maximum and minimum value present in an array |
D. | They show the median and mode of the variable |
Answer» D. They show the median and mode of the variable | |
2. |
Choose the correct option as an inference from the following workspace view. |
A. | ‘ans’, ‘p’ and ‘ap’ are double variables |
B. | ‘ans’ and ‘p’ are double variables while ‘c’ is a character variable |
C. | ‘ap’ is symbolic object, ‘c’ is a double variable |
D. | ‘c’ is a symbolic character |
Answer» C. ‘ap’ is symbolic object, ‘c’ is a double variable | |
3. |
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]; |
Answer» B. a=10;b=’pi’;syms c; d=[1,2;0,4]; | |