A number is divisible by 2 if the last digit is 0, 2, 4, 6, or 8
A number is divisible by 3 if the sum of the digits is divisible by 3
A number is divisible by 4 if the last two digits is divisible by 4
A number is divisible by 5 if the last digit is 0 or 5
A number is divisible by 6 if it is divisible by 2 and 3
A number is divisible by 7 if you cross off the last digit, double it and subtract, and the new number is divisible by 7
A number is divisible by 8 if the last 3 digits is divisible by 8
A number is divisible by 9 if the sum of the digits is divisible by 9
A number is divisible by 10 if the last digit is 0
A number is divisible by 11 if you subtract the last digit from the number formed by the remaining digits, and the new number is divisible by 11
A number is divisible by 12 if it is divisible by 3 and 4