MCQOPTIONS
Saved Bookmarks
This section includes 6 Mcqs, each offering curated multiple-choice questions to sharpen your Technical MCQs knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What relation is consider between Eigen value (lambda), square matrix (A) and Eign vector(v)? |
| A. | Av = lambda*v |
| B. | Av =Constant * lambda*v |
| C. | Av =10 * lambda*v |
| D. | Av != lambda*v |
| E. | |
| Answer» B. Av =Constant * lambda*v | |
| 2. |
from scipy import linalgimport numpy as npa = np.array([[3, 2, 0], [1, -1, 0], [0, 5, 1]])b = np.array([2, 4, -1])x = linalg.solve(a, b)print x8.In SciPy, determinant is computed using? |
| A. | determinant() |
| B. | SciPy.determinant() |
| C. | det() |
| D. | SciPy.det() |
| Answer» D. SciPy.det() | |
| 3. |
what is constant defined for Boltzmann constant in SciPy? |
| A. | G |
| B. | e |
| C. | R |
| D. | k |
| Answer» E. | |
| 4. |
import numpy as npprint np.linspace(1., 4., 6)5.How to import Constants Package in SciPy? |
| A. | import scipy.constants |
| B. | from scipy.constants |
| C. | import scipy.constants.package |
| D. | from scipy.constants.package |
| Answer» C. import scipy.constants.package | |
| 5. |
Which of the following is not correct sub-packages of SciPy? |
| A. | scipy.cluster |
| B. | scipy.source |
| C. | scipy.interpolate |
| D. | scipy.signal |
| Answer» C. scipy.interpolate | |
| 6. |
SciPy stands for? |
| A. | science library |
| B. | source library |
| C. | significant library |
| D. | scientific library |
| Answer» E. | |