Q. What will be the output of the following code: print(3 // 2)?
β
Correct Answer: (B)
1
Explanation: The '//' operator is used for floor division, which returns the quotient of the division without the remainder. So 3 // 2 is 1.