Home / CSE MCQs / Python MCQs :: Discussion

Discussion :: Python MCQs

  1. What is the value of the following expression:

    24//6%3, 24//4//2
  2. A.
    (1,3)
    B.
    (0,3)
    C.
    (1,0)
    D.
    (3,1)

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The expressions are evaluated as: 4%3 and 6//2 respectively. This results in the answer (1,3). This is because the associativity of both of the expressions shown above is left to right.


Be The First To Comment