Answer:
Numerical operations is a test of written calculation and includes simple arithmetic problems including addition, subtraction, multiplication and division.
The '//' operator is used for floor division in programming and mathematics. It divides the first number by the second and rounds down to the nearest whole number.
In the context of programming and mathematics, the ' // ' operator is used for floor division. This operation divides the left operand by the right operand and then rounds the result down to the nearest whole number. For example, if you perform the operation 7 // 2, the result would be 3, because 7 divided by 2 equals 3.5, and when rounded down, the result is 3.
#SPJ11