Vidyalelo
JavaScript · Q38

Performance Measures

Programming · JavaScript · question 38

Q38

What are the three important manipulations done in a for loop on a loop variable?

A.
Updation, Incrementation, Initialization
B.
Initialization,Testing, Updation
Answer
C.
Testing, Updation, Testing
D.
Initialization,Testing, Incrementation

Answer: Option B

Solution

Answer: Option B
Solution:
In a for loop, the initialization, the test, and the update are the three crucial manipulations of a loop variable.