Python Set MCQs

Question 6: Set is:

Question 7: What will be the output of the following code?

s={1,2,3 }
s[0]=10
print(s)

Question 8: What will be the output of the following code?

myset={1,2,3 }
for i in myset:
    print(i)