EDA Python - 16-2Numpy_random_and_masks

EDA Python - 16-2Numpy_random_and_masks

Assessment

Interactive Video

Information Technology (IT), Architecture

University

Hard

Created by

Quizizz Content

FREE Resource

The video tutorial explains how to create and manipulate arrays using NumPy. It covers generating random arrays, performing arithmetic operations like addition and multiplication, and applying conditions to filter array elements. The tutorial also highlights the importance of understanding these operations for data manipulation in pandas.

Read more

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What function is used to create a 5x5 array of random integers in NumPy?

np.random.randint

np.array.randint

np.random.rand

np.array.random

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you add a third dimension to a NumPy array?

By specifying three dimensions in the array creation

By using the flatten function

By stacking two arrays

By using the reshape function

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of adding a NumPy array to itself?

Each element is doubled

The array is transposed

The array is flattened

Each element is squared

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operation will give the square root of each element in a NumPy array?

array / 2

np.square(array)

array ** 0.5

np.sqrt(array)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does a Boolean mask in a NumPy array do?

Sorts the array in ascending order

Converts the array to a list

Changes the data type of the array

Selects elements based on a condition