List and tuple in python

List and tuple in python

7th - 8th Grade

5 Qs

quiz-placeholder

Similar activities

Examen Parcial 2do y 3ro básico

Examen Parcial 2do y 3ro básico

8th Grade - University

10 Qs

Programming in Robotics

Programming in Robotics

6th - 11th Grade

10 Qs

Exercícios de Strings em Python

Exercícios de Strings em Python

8th Grade

10 Qs

Hardware & Software II

Hardware & Software II

8th - 10th Grade

10 Qs

Medida de ángulos

Medida de ángulos

7th Grade

6 Qs

How to Divide and Multiply Quotients and Products

How to Divide and Multiply Quotients and Products

7th - 8th Grade

7 Qs

Python Quiz

Python Quiz

8th Grade

6 Qs

Quizz de la programación

Quizz de la programación

8th Grade

6 Qs

List and tuple in python

List and tuple in python

Assessment

Quiz

Instructional Technology

7th - 8th Grade

Medium

Created by

AANYA KAPOOR

Used 8+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who invented python?

Alaxader Graham Bell

James Gosling

Guido Van Rossum

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is list a mutable data type?

True

False

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which two are a tuple in Python?

(99,100,101)

(11, 33, 77)

[11,22,33]

[2, 4, 6]

4.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Python is a _______ language.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of-

list1 = [51,52,53,54,55]

print (list1)

print (list1[4])

[51, 52, 53, 54, 55]

55

[51, 52, 53, 54, 55]

54

55

Error