After `copy = data.copy()` for a dictionary with a nested list value, which statements are true? Select all that apply.
Explanation
The call constructs a separate outer dictionary, but its values are copied as references, so a nested list remains shared. Calling this a deep copy incorrectly assumes recursive duplication, while calling it a complete alias ignores the new outer mapping.