Respuesta :
The payroll equation for one employee is given as;
Payroll = $800 + 10%( 0≥x≤$1000) + 20%(x>$1000).
Where X = Sales.
The payroll is computed as an equation because the commission is relational and not given. The flow chart to for the problem is attached.
What is a Flowchart?
A Flow chart is a graphical representation of a sequence of events showing the order in which they occur.
Flow charts are used for:
- Designing programs
- Depicting or documenting simple processes
- Making processes easy to communicate etc.
Flowcharts are usually related to Pseudocodes.
The pseudocode for the equation above will look like this:
- Start
- Input x
- P = $800 + 10%( 0≥x≤$1000) + 20%(x>$1000).
- Displace P
- Stop
Learn more about flow charts at:
https://brainly.com/question/6532130