In Python, the dict() function is a built-in constructor
that creates a new dictionary object.
It can take key-value pairs or other mappings to create a dictionary.
keys(), values(), and items() are methods that work on an existing dictionary,
but they do not create a new dictionary.
keys() returns a view of the dictionary’s keys,
values() returns a view of its values,
and items() returns a view of its key-value pairs as tuples.
Only dict() actually creates and returns a dictionary object.
Therefore, option (A) is correct.