Final answer:
The correct code segment to use in order to print the name tags in the desired way is option 1) Swap the values of FN and LN before printing.
Step-by-step explanation:
The correct code segment to use in order to print the name tags in the desired way is option 1) Swap the values of FN and LN before printing.
By swapping the values of FN (first name) and LN (last name) before printing, the program will print the last name before the first name, as desired.
For example, if the original values of FN and LN were 'John' and 'Doe' respectively, using the swap method would result in 'Doe John' being printed on the name tag.