FIND HOW TO CHECK DIVISIBILITY BY THE FOLLOWING DIVISORS
2,3,4,5,6,8,9,10
Answers
Answer:
by 2 chck last digit if it is 2,4,6,8,0
by 3 sum of digit
by 4 divide the digit
by 5 chck last digit if it is 5,0
by 6 if digit is divisible by 2,3
by 8 divide the digit
by 9 if the digit is divisible by 3
by 10 chck last digit is 0
Step-by-step explanation:
2- if the unit digit of number is divisible by 2 then the number is also divisible by 2
3- if the sum of all digits of number is divisible by 3 then the number is also divisible by 3
4- if the last 2 digits of number is divisible by 4 then the number is also divisible by
5-if the unit digit of number is 0 or 5 then the number is divisible by 5
6- if the number is divisible by 2 and 3 both then the number is also divisible by 6
8- if the last three digits of number is divisible by 8 then the number is also divisible by 8
9- if the sum of all digits of number is divisible by 9 then the number is also divisible by 9
10- if the unit digit of number is zero then the number is divisible by 10