For dictionary view objects, which statements are true? Select all that apply.
Every view is a frozen list.
A previously obtained keys view can show a later added key.✓Correct answer
A view captures a permanent snapshot at creation time.
The objects returned by `keys`, `values`, and `items` are views.✓Correct answer
Explanation
The objects from `keys`, `values`, and `items` remain connected to their dictionary and reveal later content changes. Treating them as frozen lists or snapshots misses this live-view behavior.