Question: What is runtime complexity of the list's built-in `.append()` method?
- O(1), also called constant time
- O(log n), also called logarithmic time
- O(n^2), also called quadratic time
- O(n), also called linear time
Answer: The correct answer of the above question is Option A:O(1), also called constant time