Python NumPy Quiz

Python NumPy Quiz

12th Grade

10 Qs

quiz-placeholder

Similar activities

Computing XDDD

Computing XDDD

KG - University

10 Qs

PHIẾU HỌC TẬP 1

PHIẾU HỌC TẬP 1

3rd - 12th Grade

10 Qs

Sorting Methods

Sorting Methods

9th Grade - University

10 Qs

Test:  Czy masz jeszcze kontrolę? Czy jesteś fonoholikiem?

Test: Czy masz jeszcze kontrolę? Czy jesteś fonoholikiem?

12th Grade

10 Qs

Data Frame1

Data Frame1

12th Grade

10 Qs

Pretest Sorting (Pengurutan)

Pretest Sorting (Pengurutan)

9th - 12th Grade

10 Qs

09_Minesweeper

09_Minesweeper

9th - 12th Grade

10 Qs

Linked List

Linked List

12th Grade

10 Qs

Python NumPy Quiz

Python NumPy Quiz

Assessment

Quiz

Computers

12th Grade

Practice Problem

Hard

Created by

Estebelle Khong

Used 4+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of a Module in Python?

To create loops

To define functions and classes

To manipulate arrays

To sort arrays

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the np.array() function do?

Creates a new array filled with zero values.

Creates a new array from an existing data structure like a list or tuple.

Generates a range of numbers spaced evenly between specified start, stop, and step values.

Randomly initializes an array of given shape and data type.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the np.arange(3, 15, 3) function call return?

An array with elements [3, 6, 9, 12, 15]

An array with elements [3, 6, 9, 12]

An array with elements [3, 5, 7, 9, 11, 13]

An array with elements [2, 5, 8, 11, 14]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following will create a 2D array using np.array()?

np.array(5, 5)

np.array([1, 2], [3,4])

np.array([[1, 2], [3, 4]])

np.array() with no arguments

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following operation do? numpy.array([1, 2, 3]) + 4

It raises an error because of a mismatch in dimensions

It creates a new array with each element incremented by 4, resulting in [5, 6, 7]

IIt appends 4 to the array, resulting in [1, 2, 3, 4]

None of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you change a flat array with 12 elements into a 3 rows and 4 columns matrix?

array.reshape(3, 4)

array.reshape([3, 4])

array.reshape(3, 4, 1)

array.reshape(4, 3)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You want to reshape a 4x4 matrix into a new array with 8 columns. What should pass to .reshape() to let NumPy automatically calculate the appropriate number of rows?

.reshape(:, 8)

.reshape(-1, 8)

.reshape(0, 8)

.reshape(, 8)

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?