Q. What is the output of the following code?
Code:
print(type([]) is list)
β
Correct Answer: (A)
True
Explanation: `type([])` returns `<class 'list'>`, and `is list` checks identity, which is `True` in this case.