Post

@PythonPr Answer: b (2)
The code uses the floor division operator (//) in Python. This operator divides the first number by the second and rounds the result down to the nearest whole number (integer).
x is assigned the value 10.
y is assigned the value 5.
English

@PythonPr Answer: b
because it uses integer based division, not floating point division
"/" ---> Floating point division
"//" ----> Integer division
English

@PythonPr B). // is the floor division operator in Python. It divides and always returns the integer part of the result, it removes decimals.
English

@PythonPr B) 2
x = 10 and y = 5
result= x // y
// Is floor division ( usually divides and round result to the nearest whole number)
So 10 / 5 is 2 ( result remains 2 because 2 is already a whole number)
English













