Tuples in Python

Description

Coding Python Quiz on Tuples in Python, created by PathaPadha Support on 27/10/2020.
PathaPadha Support
Quiz by PathaPadha Support, updated more than 1 year ago
PathaPadha Support
Created by PathaPadha Support over 3 years ago
370
0

Resource summary

Question 1

Question
What is the output of the following ? tuple1 = (1120, 'a') print(max(tuple1))
Answer
  • TypeError
  • 1120
  • ‘a’

Question 2

Question
What is the output of the following tuple operation ? aTuple = (100,) print(aTuple * 2)
Answer
  • TypeError
  • (100, 100)
  • (200)

Question 3

Question
Select true statements regarding the Python tuple
Answer
  • We can remove the item from tuple but we cannot update items of the tuple
  • We cannot delete the tuple
  • We cannot remove the items from the tuple
  • We cannot update items of the tuple.

Question 4

Question
What is the output of the following tuple operation ? aTuple = (100, 200, 300, 400, 500) aTuple.pop(2) print(aTuple)
Answer
  • (100, 200, 400, 500)
  • (100, 300, 400, 500)
  • AttributeError

Question 5

Question
Select which is true for Python tuple
Answer
  • A tuple maintains the order of items
  • We can change the tuple once created
  • We cannot change the tuple once created
  • A tuple is unordered

Question 6

Question
A Python tuple can also be created without using parentheses
Answer
  • True
  • False

Question 7

Question
Choose the correct way to access value 20 from the following tuple aTuple = ("Orange", [10, 20, 30], (5, 15, 25))
Answer
  • aTuple[1:2][1]
  • aTuple[1:2](1)
  • aTuple[1:2][0]
  • aTuple[1][1]

Question 8

Question
What is the output of the following code ? aTuple = (100, 200, 300, 400, 500) aTuple[1] = 800 print(aTuple)
Answer
  • TypeError
  • (100, 800, 200, 300, 400, 500)
  • (800, 100, 200, 300, 400, 500)

Question 9

Question
What is the output of the following ? aTuple = (10, 20, 30, 40, 50, 60, 70, 80) print(aTuple[2:5], aTuple[:4], aTuple[3:])
Answer
  • (30, 40, 50) (10, 20, 30, 40) (40, 50, 60, 70, 80)
  • (20, 30, 40, 50) (10, 20, 30, 40) (30, 40, 50, 60, 70, 80)
  • (30, 40, 50) (10, 20, 30, 40) (40, 50, 60, 70)
  • (30, 40, 50) (10, 20, 30) (40, 50, 60, 70, 80)

Question 10

Question
What is the type of the following variable ? aTuple = ("Orange") print(type(aTuple))
Answer
  • list
  • tuple
  • array
  • str

Question 11

Question
What is the output of the following code ? aTuple = (100, 200, 300, 400, 500) print(aTuple[-2]) print(aTuple[-4:-1])
Answer
  • 400 (200, 300, 400)
  • IndexError: tuple index out of range
  • 400 (200, 300)

Question 12

Question
What is the output of the following ? aTuple = "Yellow", 20, "Red" a, b, c = aTuple print(a)
Answer
  • (‘Yellow’, 20, ‘Red’)
  • TyepeError
  • Yellow
Show full summary Hide full summary

Similar

Python Quiz
karljmurphy
Think Python
tsilvo2001
Basic Python - Print Formatting
Rebecca Noel
What is Python?
Daniel Ingram
Python
54671
Know your Python!
educ8ict
Basic Python - Strings
Rebecca Noel
Study on IoT systems design
Tomasz Cieplak
Python
Kirstie Wu
OpenSource Programming
Faheem Ahmed
Basic Python - Lists
Rebecca Noel