Question: How will you add the number 3 to the right side?

  1. `values.append(3)`
  2. `values.insert(3, 3)`
  3. `append(values, 3)`
  4. `values = append(values, 3)`

Answer: The correct answer of the above question is Option D:`values = append(values, 3)`