- A Updation, Incrementation, Initialization
- B Initialization,Testing, Updation
- C Testing, Updation, Testing
- D Initialization,Testing, Incrementation
Answer:
B
The three critical manipulations of a loop variable in a for loop are initialization, testing, and updating.
The loop first initialises the variable, then tests the condition, and finally increments its value after executing the statement.