Reference no: EM132355198
Question
Lab 2.1 - Required Program worth 80% of your grade
Pseudocode and No Modules
All your comments and code will go in sequential order in the primary python file
This lab requires you to think about the steps that take place in a program by writing pseudocode. Read the following program prior to completing the lab.
A retail company must file a monthly sales tax report listing the total sales for the month and the amount of state and county sales tax collected. The state sales tax rate is 4 percent and the county sales tax rate is 2 percent. give an example of program that asks the user to enter the total sales for the month. The application should calculate and display the following:
· The amount entered by the user for total sales
· The amount of county sales tax
· The amount of state sales tax
· The total sales tax (county plus state)
Sample input data:
Enter total monthly sales: 1000
Sample output data:
You entered total monthly sales as: 1000.0
County tax is: 20.0
State tax is: 40.0
Total tax due is: 60.0
Step 1: This program is most easily solved using just four variables. Declare the variables that you will need in the program, using the proper data
Variable Name
Purpose
Declare Real totalSales
Stores total sales the user inputs
Declare Real countyTax
Stores the countyTax
Declare Real stateTax
Stores the stateTax
Declare Real totalTax
Stores the totalTax
Step 2: Complete the pseudocode by writing the missing lines
//Declare local variables
Declare Real totalSales
Decalre Real countyTax_____
Declare Real totalTax_____
Declare Real stateTax___
# Input totalSales from user
# Enter tax calculations
# Print output statements
Lab 2.1 - Flowcharts: You can use the flow chart we created in class; copy it from your previous document and paste below
Lab 2.1 - Python Code: Copy your code from python and paste below
Warning: if you type it in here, you will end up with a lot of compiles errors when I run it which will count off points. If you copy it from python and paste it below, it should run for me like it does for you.
Lab 2.1 - Python Execution Screen Shot: Take a screen shot of your execution screen and paste below
Create a python program that will produce the third letter
: Create a Python program that will produce the following output: Given the following sentence, print out every third letter.
|
Read statement and write your opinion
: In the twentieth century, contemporary medicine, traditionally considered a healing profession, evolved away from the role of Healing the sick to that of.
|
Identify the main ethical dilemma
: ACS Code of Professional Conduct - Analyse the ethical dilemma, considering the different actions by the la professional 'Ken' as suggested in the three videos
|
Identify the situation you would like to practice
: Identify the situation you would like to practice; do you want to plan a new conversation, or replay a past situation but change the outcome?
|
Calculate the amount of county sales tax
: A retail company must file a monthly sales tax report listing the total sales for the month and the amount of state and county sales tax collected.
|
Strategic management and planning for private-public sectors
: What are the differences and similarities between strategic management and planning for the private and public sectors?
|
Several forces for organizational change
: There are several forces for organizational change: workplace demographics, technology, globalization, market conditions, growth, and poor performance.
|
Maintenance of the workplace systems-procedures
: Discuss how the following can support the review, updating & maintenance of the workplace systems & procedures relating to managing safety & hazards?
|
Differenciate adlerian approach and psychoanalytic approach
: Briefly explain the difference between the Adlerian approach and the psychoanalytic approach. For each approach (Adlerian and psychoanalytic).
|