Aman2487's confusion here is actually super common and worth addressing clearly.
The given condition is a^3 > b^2 > c. That's it. We are NOT told anything about the relative ordering of a, b, and c themselves. The question is asking which orderings of a, b, c are POSSIBLE -- not which ones must always be true.
Here's the key insight this question is testing in Problem Solving: a^3 can grow much faster or slower than a depending on whether a is greater or less than 1, and b^2 is always non-negative. So the values of a^3, b^2, and c tell you relatively little about the actual values of a, b, and c.
For Statement I (a > b > c): try a = 10, b = 3, c = 2. Then a^3 = 1000, b^2 = 9. Check: 1000 > 9 > 2. And a > b > c: 10 > 3 > 2. Works.
For Statement II (c > b > a): try a = 2, b = 3, c = 7. Then a^3 = 8, b^2 = 9. Check: 9 > 9? No. Adjust: a = 1.9, b = 2, c = 3. a^3 = 6.86, b^2 = 4. Check: 6.86 > 4 > 3. And c > b > a: 3 > 2 > 1.9. Works.
For Statement III (a > c > b): try a = 5, b = 0, c = 2. a^3 = 125, b^2 = 0. Check: 125 > 0 -- wait c needs to be less than b^2. Try b = -1, c = 0.5, a = 2. b^2 = 1, a^3 = 8. Check: 8 > 1 > 0.5. And a > c > b: 2 > 0.5 > -1. Works.
So all three can be true. Answer: E.
The trap is thinking a^3 > b^2 tells you a > b. It doesn't, because squaring and cubing can flip orderings depending on the sign and magnitude of the base.