Question: What is runtime complexity of the list's built-in `.append()` method?

  1. O(1), also called constant time
  2. O(log n), also called logarithmic time
  3. O(n^2), also called quadratic time
  4. O(n), also called linear time

Answer: The correct answer of the above question is Option A:O(1), also called constant time