Sales is real Customers is integer startmainprog input Sales input Customers if ((Sales > 500) OR ((Sales > 300) AND (Customers>9))) then output “Bonus Awarded” else output “No Bonus” end if end subroutine. Sales = 600 Customers = 9, answer:

For the values Sales = 600 Customers = 9, the following algorithm will print out the message "Bonus Awarded".

Related Python Mentoring answers

All answers ▸

How could I write a program to convert Km/h to m/s in python


Implement a fibonacci function which calculates the nth number of the fibonacci sequence.


What is the difference between a for loop and a while loop.


Which four data types are used in Python? Can you give an example of each?