Answer
See explanation
Work Step by Step
The body of the loop is the set of statements inside the loop, in the given code they are -
$print(Current)$
$Temp = Last$
$Last = Current$
$Current = Last + Temp$
Initialization step is the step in which we initialize the loop variable, in the given code it is the statement -
$Current = 1$
Modification step is the step in which we modify the loop variable, in the given code it is the statement -
$Current = Last + Temp$
Test step is the step in which the termination condition is checked, in the given code it is the statement -
$while (Current < 100):$
The code will produce following sequence :
1 1 2 3 5 8 13 21 34 55 89