Q. Which function inserts an object at a given index into a list?
β
Correct Answer: (B)
list.insert(index, obj)
Explanation: The insert() method inserts an element at a given index into a list. It returns nothing.