Concept:In each step, the alphabetically smallest word is moved to the leftmost position, and the numerically largest number is moved to the rightmost position. This process repeats until words are sorted alphabetically on the left and numbers in descending order on the right.
Explanation:Input: 100 Orbit 35 Dream 44 67 Space Apple
Step I: Identify the alphabetically smallest word – "Apple". Move it to the leftmost end. Also identify the numerically largest number – "100". Move it to the rightmost end. The order becomes: Apple Orbit 35 Dream 44 67 Space 100.
Step II: Now consider the remaining words (Orbit, Dream, Space) and numbers (35, 44, 67). The next alphabetically smallest word is "Dream". Move it to the left of the remaining words, just after "Apple". The next numerically largest number is "67". Move it to the right of the remaining numbers, just before "100". So the new arrangement is: Apple Dream Orbit 35 44 Space 67 100.
Thus, the arrangement in Step II is correctly given in option B.
Answer:B. Apple Dream Orbit 35 44 Space 67 100