[PFTR] Quiz 7 - SciPy

[PFTR] Quiz 7 - SciPy

Assessment

Quiz

Computers

University

Medium

Created by

Karunya Hacks

Used 2+ times

FREE Resource

Student preview

quiz-placeholder

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

SciPy stands for?

science library

source library

significant library

scientific library

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not correct sub-packages of SciPy?

scipy.cluster

scipy.source

scipy.interpolate

scipy.signal

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true?

By default, all the NumPy functions have been available through the SciPy namespace

There is no need to import the NumPy functions explicitly, when SciPy is imported.

SciPy is built on top of NumPy arrays

All of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to import Constants Package in SciPy?

import scipy.constants

from scipy.constants

import scipy.constants.package

from scipy.constants.package

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what is constant defined for Boltzmann constant in SciPy?

G

e

R

k

6.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

In SciPy, determinant is computed using?

determinant()

SciPy.determinant()

det()

SciPy.det()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is false?

scipy.linalg also has some other advanced functions that are not in numpy.linalg

SciPy version might be faster depending on how NumPy was installed.

Both A and B

None of the above

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will be output for the following code?

A. array([ 2., -2., 9., 6.])

B. array([ 2., -2., 9.])

C. array([ 2., -2.])

D. array([ 2., -2., 9., -9.])