Answer:
11 % 6 = 5
Explanation:
11 % 6
% this operator is called modulus in computer programming and while dividing it gives remainder as an answer:
thus, 11 % 6 will return as an answer the remainder 5
11 / 2
= 5.5
float(11) / 2
= 11.1 / 2 = 5.55
as function float() in programming returns a decimal value as an answer
2 + 3 * 2
= 2 + 6 = 8