

InterviewSolution
Saved Bookmarks
1. |
Write the given integers in descending order, -27, 19, 0, 12, -4, -22, 47, 3, -9, -35. |
Answer» Separating positive and the negative integers, we get -27, -4, -22, -9, -35 Arranging the numbers in descending order -4 > -9 > -22 > -27 > -35 The positive numbers are 19,12,47, 3 Arranging in descending order, we get 47 > 19 > 12 > 3 0 stands in the middle. ∴ Descending order: 47 > 19 > 12 > 3 > 0 > -4 > -9 > -22 > -27 > -35 |
|