4.2.3.Graded Quiz Sets - sj50179/IBM-Data-Science-Professional-Certificate GitHub Wiki

LATEST SUBMISSION GRADE 100%

Question 1 How do you cast the list A to the set a?

1 / 1 point

a.set()

a=A.dict()

a=set(A)

Correct

Question 2 Consider the Set: V={'A','B'}, what is the result of V.add('C')?

1 / 1 point

error

{'A','B','C'}

{'A','B'}

Correct

Question 3 What is the result of the following: '1' in {'1','2'} ?

1 / 1 point

True

False

Correct