1.5.1
Arithmetic & Relational Operators
Test your knowledge with free interactive questions on Seneca — used by over 10 million students.
Arithmetic Operators
Operators are symbols that represent a specific function within a program.

Basic operators
- Addition is done using a + sign.
- Subtraction is done using a - sign.
- Division is done using a / sign.
- Multiplication is done using a * sign.
- Exponentiation is done using a ** sign.

Modulo operator
- The modulo operator gives the remainder of the division of two numbers.
- For example:
- 5 % 2 would be equal to 1.

Integer division
- The integer division operator returns the quotient (whole part) of a division.
- For example:
- 5 // 2 would give 2.
Relational Operators
Relational operators compare two values, and produce a True or False value.

Equality
- We can test if two values are equal using the equality operator. For example:
- 2 == 2 would evaluate to True.
- We can test if two values are not equal using the not-equal-to operator:
- 2 != 2 would evaluate to False.

Comparison
- We can compare two numbers using the less than and greater than signs. For example:
- 2 < 3 evaluates to True.
- 2 > 3 evaluates to False.
- We can test for less than or equal, or greater than or equal like this:
- 2 <= 3 evaluates to True.
- 3 >= 3 evaluates to True.
1Introduction to Python
1.1Python
1.2Input & Output
1.3Data Types
1.4Variables & Constants
1.6Program Flow
2Data Structures
2.1Lists & Strings
2.2File Handling
3Modularity
3.1Subroutines
3.2Data Flow
4Good Practice
4.1Naming & Whitespace
4.2Comments
4.3Exceptions
Jump to other topics
1Introduction to Python
1.1Python
1.2Input & Output
1.3Data Types
1.4Variables & Constants
1.6Program Flow
2Data Structures
2.1Lists & Strings
2.2File Handling
3Modularity
3.1Subroutines
3.2Data Flow
4Good Practice
4.1Naming & Whitespace
4.2Comments
4.3Exceptions
Practice questions on Arithmetic & Relational Operators
Can you answer these? Test yourself with free interactive practice on Seneca — used by over 10 million students.
- 1What is the result of 17 % 5?Multiple choice
- 2
- 3The // operation performs which operation?Multiple choice
- 4Which of these is the correct operator for 'not equal to'?Multiple choice
- 5
Unlock your full potential with Seneca Premium
Unlimited access to 10,000+ open-ended exam questions
Mini-mock exams based on your study history
Unlock 800+ premium courses & e-books