Home / CSE MCQs / Python MCQs :: Discussion

Discussion :: Python MCQs

  1. What is the output of the code shown below?

    s=set([1, 2, 3])
    s.union([4, 5])
    s|([4, 5])
  2. A.

    {1, 2, 3, 4, 5}

    {1, 2, 3, 4, 5}

    B.

    Error

    {1, 2, 3, 4, 5}

    C.

    {1, 2, 3, 4, 5}

    Error

    D.

    Error

    Error

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    The first function in the code shown above returns the set {1, 2, 3, 4, 5}. This is because the method of the function union allows any iterable. However the second function results in an error because f unsupported data type, that is list and set.


Be The First To Comment