

MCQOPTIONS
Saved Bookmarks
This section includes 2 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 is the code to solve limx→1(logx)logx? |
A. | syms x;limit(‘log(x)^(log(x))’,x,1) |
B. | limit(‘log(x)^(log(x))’,x,1) |
C. | syms x;limit(log(x)^(log(x)),x,1) |
D. | Cannot be solved |
Answer» D. Cannot be solved | |
2. |
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’) |
Answer» C. syms n;limit(n-1,3,’right’) | |