CBSE Class 12 Computer Science
Question 22 of 44
Solved 2025 Sample Question Paper CBSE Class 12 Computer Science (083) — Question 1
Back to all questionsIn Python, a mutable object can be changed after it is created (e.g., lists, dictionaries), while an immutable object cannot be modified after its creation (e.g., tuples, strings).
An example of a mutable object from the given options is [1, 2] (list) and {1:1, 2:2} (dictionary). [Write any one]
An example of an immutable object from the options is '123' (string) and (1, 2) (tuple). [Write any one]