CBSE Class 11 Computer Science
Question 49 of 104
List Manipulation — Question 2
Back to all questions 2
Question Question 2
What do you understand by mutability? What does "in place" memory updation mean?
Answer
Mutability means that the value of an object can be updated by directly changing the contents of the memory location where the object is stored. There is no need to create another copy of the object in a new memory location with the updated values. This updation of the existing memory location of the object is called as in place memory updation.