100% Pass
What does the `=` symbol do in Python?
✔✔The `=` symbol is used to assign a value to a variable.
What does the `//` operator do in Python?
✔✔The `//` operator performs floor division, which returns the largest integer less than or equal
to the result of division.
What does the `%` operator do in Python?
✔✔The `%` operator returns the remainder of the division of two numbers.
What is the difference between `=` and `==` in Python?
✔✔`=` is used for assignment, while `==` is used to compare two values.
What is a boolean value in Python?
✔✔A boolean value can be either `True` or `False` and is used for conditional checks.
1
, What is the result of `10 - 5` in Python?
✔✔The result is `5` because it is a simple subtraction operation.
What is the result of `4 * 3` in Python?
✔✔The result is `12` because it is a multiplication operation.
What is the result of `` in Python?
✔✔The result is `5.0` because division always returns a float in Python.
What does the `>` operator do in Python?
✔✔The `>` operator checks if the value on the left is greater than the value on the right.
What is the result of `2 ** 3` in Python?
✔✔The result is `8` because `**` is the exponentiation operator in Python.
What does the `<` operator do in Python?
✔✔The `<` operator checks if the value on the left is less than the value on the right.
2