- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find how many two-digit numbers are divisible by 6.
Given: Two-digit number from 10 to 99.
What to do: To find the two-digit number divisible by 6.
Solution: A two-digit number can be divisible by 6, then it must be divisible by 2 and 3 both.
Condition 1.
It should be an even number then it could be divisible by 2.
Condition 2.
Sum of its digits should be divisible by 3. And the number itself should be divisible by 3.
Now start with 10.
10 is an even number so it is divisible by 2 but it is not divisible by 3.
So it is not divisible by 6 also.
11 is not an even number and non-divisible by both 2 and 3.
But 12 is an even number and it is divisible by both 2 and 3. Then it is divisible by 6 also.
Similarly13, 14, 15, 16 and 17 aren’t divisible by 6
But 18 fulfil the condition, divisible by both 2 and 3
$\therefore $two-digit numbers divisible by 6 between 10 to 99 are
12, 18, 24, 30, 36, 42, 48, 54, 60, 66, 72, 78, 84, 90 and 96
- Related Articles
- How many two digit numbers are divisible by $3?$
- How many numbers of two digit are divisible by 3?
- How many three digit numbers are divisible by 7?
- How many three digit natural numbers are divisible by 7?
- Find the total two-digit numbers which are divisible by $5$.
- How many 6- digit numbers are there in all ?
- Find the number of all three digit natural numbers which are divisible by 9.
- Find the sum of all 3-digit natural numbers which are divisible by 13.
- Find the sum of all 2-digit natural numbers divisible by 4.
- How many seven digit numbers are there in all?
- How many 6 digits numbers are there?
- Count n digit numbers divisible by given number in C++
- How many three-digit numbers can you make with 0,5,9 by using each digit once?
- 1870 is divisible by 22. Which two numbers nearest to 1870 are each divisible by 22?
- Find the greatest 3 digit number that is exactly divisible by 6 15 and 21

Advertisements