review of numpy in python

review of numpy in python

1st Grade

9 Qs

quiz-placeholder

Similar activities

U26 Q5 The Matrix!

U26 Q5 The Matrix!

KG - University

14 Qs

Cuestionario Lvl 3

Cuestionario Lvl 3

1st - 3rd Grade

10 Qs

check point 1

check point 1

1st Grade

12 Qs

Программирование C#

Программирование C#

1st - 10th Grade

10 Qs

informatyka

informatyka

1st - 12th Grade

9 Qs

computer

computer

KG - 4th Grade

6 Qs

Python

Python

1st - 12th Grade

10 Qs

ArrayList Review

ArrayList Review

1st Grade

10 Qs

review of numpy in python

review of numpy in python

Assessment

Quiz

Computers

1st Grade

Easy

Created by

sajedah al-hilo

Used 12+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

NumPy is ?

library for data structure and scientific calculations

library for data structure and and pictures

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

two-dimensional array ?

array with one rows and columns

array with multiple rows and columns

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Match the code output data ?

np.array([‘A’])

A

[‘A’]

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

print(np.array([3.14,7]))

what is the output?

3.14 7

[3.14 7 ]

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

np.arange(2,8,1)

[2 3 4 5 6 7 8]

[2 3 4 5 6 7]

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

np.arange(1,7,2)

[1 3 5 8]

[1 3 5]

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

(c) Create an array with multiples of 10 from 0 to 100.

0 10 20 30 40 50 60 70 80 90 100

import numpy as np tens=np.arange(0,101,10)

print(tens)

import numpy as np tens=np.arange(0,110,10)

print(tens)

8.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

orange(1,10,1)

1 ,2,3,4,5,6,7,8,9

1,3,4,6,10

,1,3,5,6

1,2,,,67,5

9.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

orange(2,6,2)

2,4

2,4,6

2,4,5,6