Python Quiz

Python Quiz

1st Grade

20 Qs

quiz-placeholder

Similar activities

lesson 26

lesson 26

1st Grade

25 Qs

Язык программирования Python

Язык программирования Python

1st - 10th Grade

20 Qs

Season 1 #Spaic Python Weekly Quiz

Season 1 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

Python_2R

Python_2R

KG - Professional Development

20 Qs

Season 2 #Spaic Python Weekly Quiz

Season 2 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

quiz

quiz

1st - 5th Grade

15 Qs

array

array

1st - 5th Grade

15 Qs

Season 4 #Spaic Python Weekly Quiz

Season 4 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

1st Grade

Medium

Created by

Adham Elmuntser

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to add an element to the end of a list in Python?

add()

append()

insert()

extend()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code: fruits = ['apple', 'banana', 'cherry']; print(fruits[3])?

apple

IndexError

None

cherry

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which Python module provides a basic implementation of arrays?

numpy

collections

array

sys

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the second element of a single-dimensional array defined as arr.array('i', [1, 2, 3, 4, 5])?

arr[2]

arr[1]

arr[0]

arr[-1]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code: import numpy as np; multi_dim_array = np.array([[1, 2, 3], [4, 5, 6]]); print(multi_dim_array[1, 2])?

1

2

5

6

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you represent a record in Python?

list

tuple

set

dictionary

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following data structures in Python is unordered and does not allow duplicate values?

list

tuple

set

dictionary

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?