Python Quizzes
Learn Python - Tuple
Quiz-summary
0 of 4 questions completed
Questions:
- 1
- 2
- 3
- 4
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 4 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Categories
- Not categorized 0%
- 1
- 2
- 3
- 4
- Answered
- Review
-
Question 1 of 4
1. Question
How to define a tuple with one item?
Correct
Incorrect
-
Question 2 of 4
2. Question
Is this program correct?
personInfo = ("Diana", 32, "New York") print(personInfo[0]) print(personInfo[1])
Correct
Incorrect
-
Question 3 of 4
3. Question
What does this code do?
x = (3,4,5,6) x = x + (1,2,3,4)
Correct
Incorrect
-
Question 4 of 4
4. Question
True or False: tuples can be sorted
Correct
Incorrect