Final answer:
The correct for loop to print multiples of 7 between 0 and 100 is 'for i in range(0, 101, 7): print(i)'. This loop will include 0 and exclude any number that is not a multiple of 7, ending before 101.
Step-by-step explanation:
To write a for loop with a three-parameter range() function that prints the multiples of 7 between 0 and 100, including the number 0, we need to make sure that the loop starts at 0 and increases in steps of 7 up to 100. Therefore, the correct option is:
a. for i in range(0, 101, 7): print(i)
The range starts at 0, ends just before 101, and increments by 7 in each step. Here's how it looks like in a loop:
for i in range(0, 101, 7):
print(i)
This will print all multiples of seven from 0 up to and including 98, as 98 is the last multiple of 7 before 100.