Background: Commissions are a form of employee payment where the employee, usually a salesperson, earns a portion of what they sell. Hank & Sons, a computer retailer described in Requirement 02, has created a commission plan where salespeople are paid different commission rates depending on much they sell in the month. Instructions: 1. Use the print() function as many times as necessary to produce the following text:
Background: Commissions are a form of employee payment where the employee, usually a salesperson, earns a portion of what they sell. Hank & Sons, a computer retailer described in Requirement 02, has created a commission plan where salespeople are paid different commission rates depending on much they sell in the month. Instructions: 1. Use the print() function as many times as necessary to produce the following text:
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
please help with the python pseudo code
![Background:
Commissions are a form of employee payment where the employee, usually a salesperson, earns a portion
of what they sell. Hank & Sons, a computer retailer described in Requirement 02, has created a
commission plan where salespeople are paid different commission rates depending on much they sell in
the month.
Instructions:
1. Use the print() function as many times as necessary to produce the following text:
Sales This Month
Admin Fee
Commission Rate
Less than $10,000
$150
5%
$10,000 – $14,999.99
$150
10%
$15,000 – $17,999.99
$150
12%
$18,000 – $21,999.99
$200
15%
$22,000 or more
$200
16%
******Salesperson of the month******
Name: STUDENT NAME
ID: STUDENT ID
2. Save your code in a Python (.py) file with the name A01_R01_CUSN_salesResult.py,
where CUSN is your Student Number.
Additional Notes:
• This requirement only involves displaying a set of text containing commission rates for
different levels of sales in a month. Complex calculations or functions are not required.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fd20fa932-311a-46cd-86ab-78d74c804e39%2Fb3af56dc-43e4-41ff-b284-2cb60cba1cf8%2Frltyg9_processed.png&w=3840&q=75)
Transcribed Image Text:Background:
Commissions are a form of employee payment where the employee, usually a salesperson, earns a portion
of what they sell. Hank & Sons, a computer retailer described in Requirement 02, has created a
commission plan where salespeople are paid different commission rates depending on much they sell in
the month.
Instructions:
1. Use the print() function as many times as necessary to produce the following text:
Sales This Month
Admin Fee
Commission Rate
Less than $10,000
$150
5%
$10,000 – $14,999.99
$150
10%
$15,000 – $17,999.99
$150
12%
$18,000 – $21,999.99
$200
15%
$22,000 or more
$200
16%
******Salesperson of the month******
Name: STUDENT NAME
ID: STUDENT ID
2. Save your code in a Python (.py) file with the name A01_R01_CUSN_salesResult.py,
where CUSN is your Student Number.
Additional Notes:
• This requirement only involves displaying a set of text containing commission rates for
different levels of sales in a month. Complex calculations or functions are not required.
![Background:
Pseudocode is regularly created to help design applications before any actual code is written, or
to help explain applications to various business stakeholders. This requirement will involve you
writing a pseudocode solution for a retail company that pays its salespeople using commissions,
and needs an application to determine how much commissions have been earned and need to be
paid.
Instructions:
1. Read the scenario below.
2. Write a pseudocode solution that can determine how much a salesperson earns in commission for a
month and how much they will receive from, or pay back to, the company.
3. Save your pseudocode as both a Microsoft Word (.docx) file and as a PDF (.pdf) file with the name
A01_R02_CUSN_pseudocode, where CUSN is your Student Number.
Scenario:
Hank & Sons is a retail seller of computers. At the end of the month, each salesperson's
commission is calculated according to the commission table detailed in Requirement 01.
Salespersons also pay a monthly admin fee to Hank & Sons based on their total monthly sales to
make up for their use of office supplies and other services provided by the company.
For example, a salesperson with $16,000 in monthly sales would earn a 12% commission minus
their admin fee ($1,920 - $150). Another salesperson with $20,000 in monthly sales would earn a
15% commission minus their admin fee ($3,000 - $200).
As staff are only paid once per month, Hank & Sons allows each employee to take up to $1,500
per month as an advance. When sales commissions are calculated, the amount advanced to an
employee is subtracted from their commission. If a salesperson's commission is less than the
amount previously advanced, they must reimburse Hank & Sons for the difference.
Write the pseudo code and flowchart for calculating the total monthly net income for Hank &
Sons sellers. Use may use Microsoft word processor to write this pseudo code. You may also use
Lucid Chart to prepare the flowchart then copy/past it in the word document with your pseudo
code.
Additional Notes:
1. The program should first ask the user to enter the salesperson's monthly sales and the
amount of pay that has been advanced.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fd20fa932-311a-46cd-86ab-78d74c804e39%2Fb3af56dc-43e4-41ff-b284-2cb60cba1cf8%2Fu4vsmc3_processed.png&w=3840&q=75)
Transcribed Image Text:Background:
Pseudocode is regularly created to help design applications before any actual code is written, or
to help explain applications to various business stakeholders. This requirement will involve you
writing a pseudocode solution for a retail company that pays its salespeople using commissions,
and needs an application to determine how much commissions have been earned and need to be
paid.
Instructions:
1. Read the scenario below.
2. Write a pseudocode solution that can determine how much a salesperson earns in commission for a
month and how much they will receive from, or pay back to, the company.
3. Save your pseudocode as both a Microsoft Word (.docx) file and as a PDF (.pdf) file with the name
A01_R02_CUSN_pseudocode, where CUSN is your Student Number.
Scenario:
Hank & Sons is a retail seller of computers. At the end of the month, each salesperson's
commission is calculated according to the commission table detailed in Requirement 01.
Salespersons also pay a monthly admin fee to Hank & Sons based on their total monthly sales to
make up for their use of office supplies and other services provided by the company.
For example, a salesperson with $16,000 in monthly sales would earn a 12% commission minus
their admin fee ($1,920 - $150). Another salesperson with $20,000 in monthly sales would earn a
15% commission minus their admin fee ($3,000 - $200).
As staff are only paid once per month, Hank & Sons allows each employee to take up to $1,500
per month as an advance. When sales commissions are calculated, the amount advanced to an
employee is subtracted from their commission. If a salesperson's commission is less than the
amount previously advanced, they must reimburse Hank & Sons for the difference.
Write the pseudo code and flowchart for calculating the total monthly net income for Hank &
Sons sellers. Use may use Microsoft word processor to write this pseudo code. You may also use
Lucid Chart to prepare the flowchart then copy/past it in the word document with your pseudo
code.
Additional Notes:
1. The program should first ask the user to enter the salesperson's monthly sales and the
amount of pay that has been advanced.
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Recommended textbooks for you
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY