Final answer:
To print the words in uppercase letters, you can use a for loop in Python.
Step-by-step explanation:
The correct answer is option Computers and Technology. To print the words in uppercase letters, you can use a for loop in Python. Here is an example:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for word in w:
print(word.upper())
This loop will iterate through each word in the list w and print its uppercase version using the upper() method.