NumPy

NumPy

University

20 Qs

quiz-placeholder

Similar activities

DS QUIZ-1 (CSE-42)

DS QUIZ-1 (CSE-42)

University

16 Qs

AVINYA 2K25

AVINYA 2K25

University

19 Qs

Go Quiz

Go Quiz

University

15 Qs

TECH WHIZ

TECH WHIZ

University

15 Qs

Fundamentals of C Programming

Fundamentals of C Programming

University

20 Qs

DBMS CA1-2025-26

DBMS CA1-2025-26

University

20 Qs

NumPy

NumPy

University

16 Qs

QUIZ

QUIZ

University

23 Qs

NumPy

NumPy

Assessment

Quiz

Engineering

University

Medium

Created by

PRABANAND S C

Used 2+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

 What is the output type of np.array([1, 2, 3])?

A. List


B. Tuple


C. ndarray

D. Series

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

 Which function returns evenly spaced values within a given range?

A. np.linspace()


B. np.arange()


C. np.range()

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the output of np.zeros((2,3))?

A. A 2x3 array filled with zeros

B. A 3x2 array filled with zeros


C. A 2x3 array filled with ones


D. An empty array

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What does a.shape return if a = np.array([[1, 2], [3, 4]])?

A. (4,)

B. (2, 2)

C. 2

D. [2, 2]

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is used to get a random number between 0 and 1?


B. np.random.rand()


C. np.random.uniform(1)


D. np.random.random()

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How do you access the element at the second row and third column of a 2D NumPy array a?

A. a[1][2]


B. a[2][3]


C. a[2,3]


D. a[1,2]

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the output of np.arange(1, 10, 2)?

[1,2,3,4,5,6,7,8,9,10]

[2,4,6,8,10]

[1,3,5,7,9]

[1,3,5,7]

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?