Q. What is the output of `print(type([]))`?
β
Correct Answer: (A)
<class 'list'>
Explanation: `[]` denotes a list in Python, so `type([])` returns `<class 'list'>`.