Question 10:
What is the least error-prone way to split a long list into two lists?
Answer options:
A. Create an empty second list, copy selected list items from the first list to the second list, and then remove the copied list items from the first list. B. Create two new lists, copy list items from the initial list to the first list, copy the remaining list items from the initial list to the second list, and then delete the initial list. C. Create an empty second list, manually re-create the needed list entries, and then remove the matching list entries from the first list. D. Copy the entire list, grid edit the copied list and remove entries that are not needed, and then grid edit the first list and remove the entries that are now in the second list.