How do you know if a number is divisible by 2?
If the number’s last digit is divisible by 2.
How do you know if a number is divisible by 5?
If the number’s last digit is 0 or 5.
How do you know if a number is divisible by 10?
If the number’s last digit is 0.
How do you know if a number is divisible by 4?
If the number formed by its last two digits is divisible by 4.
How do you know if a number is divisible by 8?
If the number formed by its last three digits are divisible by 8.
How do you know if a number is divisible by 9?
If the sum of the number’s digits is divisible by 9.
How do you know if a number is divisible by 3?
If the sum of its digits is divisible by 3.