What is the output of the following program?
set1 = set([1, 2, 4, 4, 3, 3, 3, 6, 5]) print(set1)
{1, 2, 4, 4, 3, 3, 3, 6, 5}
{1, 2, 3, 4, 5, 6}
[1, 2, 3, 4, 5, 6]
[1, 2, 4, 4, 3, 3, 3, 6, 5]
This question is part of this quiz :