<AptiCode/>

Question 519: What will be the output of the following Python code?x = 5 y = 2 result = x // y

tcs
wipro
infosys
general
aptitude
tricky-questions

The//operator performs integer division in Python, discarding any remainder. Therefore,5 // 2results in 2.