Data Analytics using Python - Quiz 2

Data Analytics using Python - Quiz 2

University

15 Qs

quiz-placeholder

Similar activities

Quiz 9

Quiz 9

University

17 Qs

РЭУ тест по Python

РЭУ тест по Python

University

20 Qs

Java Arrays

Java Arrays

University

10 Qs

Ayudantía #8 TICS100

Ayudantía #8 TICS100

University

10 Qs

Tools Data Science

Tools Data Science

University

10 Qs

Season 5 #Spaic Python Weekly Quiz

Season 5 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

NumPy

NumPy

University

20 Qs

DS_NumPy_TEST1

DS_NumPy_TEST1

University

12 Qs

Data Analytics using Python - Quiz 2

Data Analytics using Python - Quiz 2

Assessment

Quiz

Computers

University

Hard

Created by

Karunya Hacks

Used 4+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of: np.left_shift(5, 2)
10.0
20.0
18.0
300.0

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of : np.bitwise_and(10, 18)
18.0
10.0
2.0

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax to get the variance?
np.var
np.variance
np.arr.variance
arr.variance

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax to get the median?
np.median
arr.mean
mean()
np(arr.mean)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code:

a=np.array([[8,5,1],[6,2,7]])

print(np.sort(a))

[[8 5 1] [6 2 7]]] [2 6 7]]

[[1 5 8] [2 6 7]]

Error

[[8 5 1] [7 6 2]]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is Pandas ?

A Giant Fuzzy Bear

Python library to perfom data operations

Python library to manipulate datasets

None of the Above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code: np.matlib.identity(5, dtype = float)

[[1. 1.] [1. 1.]]

error

[[0. 0.] [0. 0.]]

[[1. 0. 0. 0. 0.] [0. 1. 0. 0. 0.] [0. 0. 1. 0. 0.] [0. 0. 0. 1. 0.] [0. 0. 0. 0. 1.]]

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?