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: Python Programming Fundamentals
Topic: Tuples
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