Python NumPy Quiz

Python NumPy Quiz

12th Grade

10 Qs

quiz-placeholder

Similar activities

Python Fundamentals and Programming

Python Fundamentals and Programming

11th - 12th Grade

13 Qs

C++ Programming Quiz

C++ Programming Quiz

12th Grade

10 Qs

2.2 programming fundamentals

2.2 programming fundamentals

9th - 12th Grade

10 Qs

CSP Unit 13 Practice Test

CSP Unit 13 Practice Test

9th - 12th Grade

15 Qs

CODING UNOARDUINO

CODING UNOARDUINO

12th Grade

10 Qs

Sprawdź się

Sprawdź się

4th - 12th Grade

10 Qs

ULANGAN SUMATIF

ULANGAN SUMATIF

12th Grade

10 Qs

De 1 - Access

De 1 - Access

9th - 12th Grade

10 Qs

Python NumPy Quiz

Python NumPy Quiz

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Estebelle Khong

Used 4+ times

FREE Resource

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)

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?