Explore topic-wise MCQs in Matlab.

This section includes 10 Mcqs, each offering curated multiple-choice questions to sharpen your Matlab knowledge and support exam preparation. Choose a topic below to get started.

1.

The function to evaluate the following series is

A. sqr()
B. sqrsum()
C. sumsqr()
D. sumsqr[] View Answer
Answer» C. sumsqr()
2.

We need to define a function separately to find the factorial of a number.

A. True
B. False
Answer» C.
3.

We can find the summation of an A.G.P. series using __________

A. sum()
B. symsum()
C. Depends on the series
D. Cannot be done
Answer» C. Depends on the series
4.

We can find the mean value of a series (upto n) using _________

A. meanabs()
B. mean()
C. sumabs()
D. sum()/n
Answer» C. sumabs()
5.

To find the absolute value of the sum of squares of numbers in a series, we use_________

A. abs(sumsqr())
B. sumsqr()
C. sumsqr(abs())
D. abs(sqrsum())
Answer» B. sumsqr()
6.

To calculate the sum of only absolute variables in a series, we use _________

A. sum(abs())
B. abssum()
C. sumabs()
D. abs(sum())
Answer» D. abs(sum())
7.

The sum() command cannot do ____________

A. Infinite summation
B. Numeric summation
C. Long summation
D. signed summation
Answer» B. Numeric summation
8.

How does MATLAB get the symbolic character in the function, if it is not mentioned in symsum() command?

A. It cannot
B. It uses symvar()
C. It uses symsvar()
D. It uses symbvar()
Answer» C. It uses symsvar()
9.

If the result of our summation is Infinity, what will MATLAB show?

A. Infinity
B. Nan
C. Inf
D. Error
Answer» D. Error
10.

We can generate the summation of a series, formed with a character, using ________

A. symsum
B. sum
C. symssum
D. int
Answer» B. sum