InterviewSolution
Saved Bookmarks
| 1. |
Arrange the following into a array both in descending and ascending order: Marks obtained by students 40,59,80,92,33,75,63,74,81,0. |
|
Answer» Ascending order- 0,33,40,59,63,74,75,80,81,90 Descending order- 90,81,80,75,74,63,59,40,33,0 |
|