Starting with the input 'dog cat mouse', which rearrangement results in 'cat mouse dog'?

C. MOVE 'CAT' TO THE FRONT, THEN 'DOG' TO THE END.

From the input '5 2 8 1 4', which output is achieved by sorting the numbers in ascending order?

A. 1 2 4 5 8

Given the input 'red blue green yellow', what is the output after rearranging to alphabetical order?

A. BLUE GREEN RED YELLOW

If the input is '3 1 4 2', what will be the output after sorting the numbers in ascending order?

A. 1 2 3 4

From the input 'banana orange grape', which output represents the correct sequence after rearranging the words by length?

D. GRAPE BANANA ORANGE