1. Example-1
1. Find Minimum of `130,62,10766,625,8000`
Solution: `130,62,10766,625,8000`
minimum number from Integers
First compare the number of digits in each number
Two-digit number is smaller than Three-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
So minimum is `62`
2. Find Minimum of `130,62,10766,625,8000`
Solution: `130,62,10766,625,8000`
minimum number from Integers
First compare the number of digits in each number
Two-digit number is smaller than Three-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
So minimum is `62`
3. Find Minimum of `3234,4243,4324,5432`
Solution: `3234,4243,4324,5432`
minimum number from Integers
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
So minimum is `3234`
4. Find Minimum of `4321,8102,1898`
Solution: `4321,8102,1898`
minimum number from Integers
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
So minimum is `1898`
This material is intended as a summary. Use your textbook for detail explanation. Any bug, improvement, feedback then
|