129k views
1 vote
Multiples of ten in a list

A) Python script
B) SQL query
C) Java program
D) HTML code

User Nkukday
by
8.3k points

1 Answer

3 votes

Final answer:

The subject of this question is Computers and Technology. To find the multiples of ten in a list, you would need a Python script. Here is an example of a Python script that accomplishes this task.

Step-by-step explanation:

The subject of this question is Computers and Technology.

To find the multiples of ten in a list, you would need a Python script, which is a programming language. Here is an example of a Python script:

num_list = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]

for num in num_list:
if num % 10 == 0:
print(num)

This script will iterate through each number in the list and check if it is a multiple of ten using the modulo operator (%). If the number is divisible by ten without a remainder, it will be printed.

User Dngfng
by
8.6k points