Question
What is difference between NSArray and NSMutableArray in Objective C?
Answer
Mutable means you can change its contents later, Immutable means once they are initialized, their values cannot be changed. So we cannot change NSArray's value after its initialization.