Answer:
There are mainly 2 parts of a loop structure
1. Condition of termination
2. body of loop
Example of while loop:
while (condition_is_true){
body of loop;
}
Example of do-while loop:
do{
body of loop;
}while (condition_is_true);
Initialization is not part of loop structure.