Loading practice questions
Which primitive can be used to remove an element from List?
Correct Answer: A — delete
Explanation:
Delete is the primitive used to remove an element from list. The element to be removed is passed as an argument to delete primitive along with the list name from which element is to be deleted and delete will remove that element from list.