Final answer:
Option C is the correct code segment that prints all multiples of 5 between 1 and 100, not including 100, by using a loop from 1 to 19 to print the multiples of 5 from 5 to 95.
Step-by-step explanation:
The question involves writing a piece of code that will print all the multiples of 5 between 1 and 100, not including 100. After evaluating the provided code segments, we can determine that the correct code for generating multiples of 5 within the specified range is denoted by option C) for (int k=1; k<20; k++) System.out.println(5*k);. This code snippet correctly initializes the variable k at 1 and then increments it by 1 on each iteration of the loop, where the actual multiple of 5 is printed by calculating 5*k. Therefore, as we loop from 1 to 19, we print the multiples of 5 from 5 to 95.