Q. What is the output of `type([]) == list`?
β
Correct Answer: (A)
True
Explanation: `[]` creates a list; its type is `list`.
Explanation: `[]` creates a list; its type is `list`.