Data Analytics using Python - Quiz 2

Data Analytics using Python - Quiz 2

University

15 Qs

quiz-placeholder

Similar activities

Conocimientos básicos de C

Conocimientos básicos de C

University

20 Qs

NumPy

NumPy

University

20 Qs

Ayudantía #8 TICS100

Ayudantía #8 TICS100

University

10 Qs

NumpyPandas

NumpyPandas

University

10 Qs

NumPy

NumPy

9th Grade - University

10 Qs

A1 IIIB - Introducción a Data Science

A1 IIIB - Introducción a Data Science

11th Grade - University

10 Qs

Weekly Contest #3 - TechXNinjas

Weekly Contest #3 - TechXNinjas

University

10 Qs

OCS752_CP_WEEKLY_TEST3 (20.08.2020)

OCS752_CP_WEEKLY_TEST3 (20.08.2020)

University

20 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?