

InterviewSolution
1. |
How can we check whether the limn→3+ n-1 exists?(a) limit(n-1,n,3)(b) syms n;limit(n-1,n,3,’right’)(c) syms n;limit(n-1,3,’right’)(d) syms n;limit(n-1,3,n,’right’)This question was posed to me during an interview for a job.I want to ask this question from Limits topic in division Beyond the Basics of MATLAB |
Answer» Correct choice is (b) syms n;limit(n-1,n,3,’right’) |
|