Respuesta :

The pseudocode of the program is the prototype of the actual program

How to write the pseudocode?

The pseudocode of the broadband data usage program is as follows:

Set total = 0

Input data_usage

while data_usage != 0:

    total += data_usage

    Input data_usage

print total

The flow of the pseudocode

The flow of the pseudocode is as follows:

  • Start by setting the total data usage to 0
  • Next, get inputs of data usage until the user enters 0
  • Add all nonzeros inputs
  • Exit the loop, when the user enters 0
  • Print the total data usage

Read more about pseudocode at:

https://brainly.com/question/11623795