Wrong, the correct answer is BD. and here's the explanation:
* Standard For -> You can process all elements in reverse by putting the condition of " >=0", ">0" and putting in the increment "--var", "var--". You can put an alternating sequence by moving the increment, for example, if you want to jump from 2 to 2 places, in the for increment field you put "var = var +2" that will compile. About the correct sequence any for does.
* Enchanced for -> You can only loop through the elements in the order of entry, you can't do it in reverse or alternately, as in enchanced for you access each element of the collection scalable (from smallest to largest in position).