question # 3\nmultiple choice\nthe task is to ask the user for three numbers and find the average. which…

question # 3\nmultiple choice\nthe task is to ask the user for three numbers and find the average. which pseudocode gives you the comment outline for the task?\n# ask the user for three numbers\n# divide by 3\n# print the average\nask the user for three numbers\nadd the numbers\ndivide by 3\nprint the average\nask the user for three numbers\ndivide by 3\nprint the average\n# ask the user for three numbers
Answer
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