If the input sequence is '1 2 3 4 5', what will be the output after applying the rearrangement steps: Step 1: Move '5' to the front, Step 2: Swap '2' and '3'?

A. 5 3 2 1 4

Given the input 'apple banana cherry', which of the following is the correct output after rearrangement according to the steps provided?

A. BANANA CHERRY APPLE

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

A. 1 2 3 4

Given the input words: 'apple banana cherry date', which of the following is the correct output after rearrangement?

B. DATE APPLE BANANA CHERRY

If the input sequence is '1 3 5 7 9', what is the output after applying the rearrangement steps: move the first element to the end, then reverse the sequence?

A. 9 7 5 3 1