Question
Easy

Tuples in Python are:

1
mutable
2
immutable
3
modifiable
4
convertible
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter:
Topic:
Correct Answer
Option B
Explanation

The correct option is (2): The correct option is (2) because tuples in Python are fundamentally immutable data structures. Immutability means that once a tuple is created in memory, its contents—the sequence of elements it holds—cannot be changed, added to, or removed from. This property is a core design choice in Python, distinguishing tuples from mutable data types like lists. Being immutable provides several advantages, such as allowing tuples to…Read More