python advance

python advance

Assessment

Flashcard

Computers

10th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

13 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What Python package for Linear Algebra? Options: Matrix, Array, NumPy, Pynum

Back

NumPy

2.

FLASHCARD QUESTION

Front

What is the name of the programming language we are learning?

Back

Python

3.

FLASHCARD QUESTION

Front

What is python?

Back

a programming language

4.

FLASHCARD QUESTION

Front

__________ is a library used to create data structures and carry out scientific calculations.

Back

Numpy

5.

FLASHCARD QUESTION

Front

How to use numpy ?

Back

import numpy as np

6.

FLASHCARD QUESTION

Front

What is the output of the following code: names = np.array(["Reem" , "Salah" , "Haya" , "Maryam" , "Fatema"]) print(names([2])) Mark the right output from the below options Options: [ 'Haya' ], [ 'Maryam' ], [ 'Reem' ], [ 'Salah' ]

Back

[ 'Haya' ]

7.

FLASHCARD QUESTION

Front

What is the output of the following code?
names = np.array(["Reem" , "Salah" , "Haya" , "Maryam" , "Fatema"])
names[2] = "Omar"
print([names])
*Mark the right output from the below options*:
[ "Reem" , "Salah" , "Haya" , "Maryam" , "Fatema" ]
[ "Reem" , "Salah" , "Omar" , "Maryam" , "Fatema" ]
[ "Reem" , "Haya" , "Salah" , "Maryan" , "Fatema" ]

Back

[ "Reem" , "Salah" , "Omar" , "Maryam" , "Fatema" ]

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?