Respuesta :

Flowcharts and pseudocodes are used as prototypes of actual programs.

  • Flowcharts are in graphical form, while pseudocodes are in the form of texts.
  • The flowchart and pseudocode do not conform to programming syntax

The pseudocode is as follows:

  1. Start
  2. Input x, b
  3. c = 3 * x + b
  4. Display c
  5. Stop

  • The first line of the pseudocode illustrates the beginning.
  • The next line gets input for x and b
  • The third line calculates c
  • The fourth line prints the calculated value of c
  • The last line ends the pseudocode

The above explanation is also applicable to the flowchart (see attachment)

Read more about flowcharts and pseudocodes at:

https://brainly.com/question/14672359

Ver imagen MrRoyal