

InterviewSolution
Saved Bookmarks
1. |
Largest and smallest values for integer classes is 127 to -128.(a) True(b) FalseThis question was posed to me in an interview for job.This question is from Arithmetic topic in chapter MATLAB Basics of MATLAB |
Answer» RIGHT option is (a) True To ELABORATE: Obtain these values with the intmax and intmin functions: intmax(‘int8’) ans = 127 intmin(‘int8’)– ans = 128. |
|