Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question # 3 multiple choice the task is to ask the user for three numb…

Question

question # 3
multiple choice
the task is to ask the user for three numbers and find the average. which pseudocode gives you the comment outline for the task?

ask the user for three numbers

divide by 3

print the average

ask the user for three numbers
add the numbers
divide by 3
print the average
ask the user for three numbers
divide by 3
print the average

ask the user for three numbers

Explanation:

Brief Explanations

To find the average of three numbers, first input the numbers, then sum them, and finally divide the sum by 3 and print the result. The correct pseudocode should follow these logical steps.

Answer:

ask the user for three numbers
add the numbers
divide by 3
print the average