1. Example-1
1. Arrange the numbers `130,62,10766,625,8000` in Ascending order
Solution: `130,62,10766,625,8000`
Arrange Integers in Ascending Order
First compare the number of digits in each number
Two-digit number is smaller than Three-digit number Three-digit number is smaller than Four-digit number If the number of digits is the same, then compare the left-most digits of the numbers. If they match, then move to the next digits
`62 < 130 < 625 < 8000 < 10766`
2. Arrange the numbers `4321,8102,1898` in Ascending order
Solution: `4321,8102,1898`
Arrange Integers in Ascending Order
First compare the number of digits in each number
The number of digits are same(4) in all the numbers. So compare the left-most digits of the numbers. If they match, then move to the next digits
`1898 < 4321 < 8102`
3. Arrange the numbers `6026,6062,6620,6260` in Ascending order
Solution: `6026,6062,6620,6260`
Arrange Integers in Ascending Order
First compare the number of digits in each number
The number of digits are same(4) in all the numbers. So compare the left-most digits of the numbers. If they match, then move to the next digits
`6026 < 6062 < 6260 < 6620`
4. Arrange the numbers `3234,4243,4324,5432` in Descending order
Solution: `3234,4243,4324,5432`
Arrange Integers in Descending Order
First compare the number of digits in each number
The number of digits are same(4) in all the numbers. So compare the left-most digits of the numbers. If they match, then move to the next digits
`5432 > 4324 > 4243 > 3234`
5. Arrange the numbers `7198,2364,5078,1590` in Descending order
Solution: `7198,2364,5078,1590`
Arrange Integers in Descending Order
First compare the number of digits in each number
The number of digits are same(4) in all the numbers. So compare the left-most digits of the numbers. If they match, then move to the next digits
`7198 > 5078 > 2364 > 1590`
6. Arrange the numbers `6026,6062,6620,6260` in Descending order
Solution: `6026,6062,6620,6260`
Arrange Integers in Descending Order
First compare the number of digits in each number
The number of digits are same(4) in all the numbers. So compare the left-most digits of the numbers. If they match, then move to the next digits
`6620 > 6260 > 6062 > 6026`
This material is intended as a summary. Use your textbook for detail explanation. Any bug, improvement, feedback then
|