FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Aaron would like to create a program that allows the user to find the average of five numbers. He has asked for your help. Below is the pseudocode Aaron has written:|Enter five numbers|Add the numbers entered|Multiply the sum of the numbers entered by 5|Display the resultAfter examining the code, you determine that:
A
the program needs to multiply the five numbers entered, not add.
B
the program needs to provide the five numbers to the user.
C
the program will provide the correct answer.
D
the program needs to divide the sum of the numbers entered by 5, not multiply.
Explanation: 

Detailed explanation-1: -Pseudocode is sometimes used as a detailed step in the process of developing a program. It allows designers or lead programmers to express the design in great detail and provides programmers a detailed template for the next step of writing code in a specific programming language.

Detailed explanation-2: -She explains that every step must be followed in order and that no steps may be skipped. She shows the errors that will occur if the order is mixed or steps are skipped. This type of programming structure is known as: sequence.

There is 1 question to complete.