Kizspy | Question: 16
(Choose 1 answer)
Which data structure is the output of the code given below?# Code starts
col = (2,4,6,3,5,8,7,6,4,3,0,9)
I = list(col)
finalAns = list(set(col))
print(type(finalAns))
# Code Ends
A. Tree
B. List
C. Set
D. Dictionary