What is 4,-6,0,8,-9 in ascending order

Start with -9

-9,-6,0,...,8

To sort the numbers in ascending order, you need to arrange them from the smallest value to the largest value.

The given numbers are: 4, -6, 0, 8, -9.

To sort them in ascending order, you can follow these steps:

1. Compare the first two numbers: 4 and -6. Since -6 is smaller than 4, we swap their positions.

New arrangement: -6, 4, 0, 8, -9.

2. Now, compare the first two numbers again: -6 and 0. Since -6 is still smaller than 0, we swap their positions.

New arrangement: -6, 0, 4, 8, -9.

3. Next, compare the next two numbers: 0 and 4. Since 0 is smaller than 4, we don't need to swap their positions.

New arrangement: -6, 0, 4, 8, -9.

4. Now, compare the next two numbers: 4 and 8. Since 4 is smaller than 8, we don't need to swap their positions.

New arrangement: -6, 0, 4, 8, -9.

5. Finally, compare the last two numbers: 8 and -9. Since -9 is smaller than 8, we swap their positions.

New arrangement: -6, 0, 4, -9, 8.

Therefore, the numbers 4, -6, 0, 8, -9, when arranged in ascending order, become -9, -6, 0, 4, 8.