A county collects property taxes on the assessment value of property, which is 6
ID: 3679353 • Letter: A
Question
A county collects property taxes on the assessment value of property, which is 60 percent of the
property’s actual value. For example, if an acre of land is valued at $10,000, its assessment value is
$6,000. ($10,000 * .60). The property tax rate varies based on the result of the assessment value of the
property. Here is a chart to show the appropriate property tax rate based upon the assessment value:
Assessesment Value Property Tax Rate
Greater than $10,000 = .75
Between $7,500 and $10,000 = .70
Between $5,000 and $7,499 =.68
Below $5,000 =.64
Design the logic for a program that asks the user to enter the actual value of a piece of property and
calculates and displays the assessment value, the property tax rate, and the property tax. The program
MUST include the following FUNCTIONS for use in the program:
calcAssessmentValue – this function should accept the value of the actual value of the property as an
argument and calculate and return the assessment value and assign it to an appropriately declare local
variable in main.
determineTaxRate – this function should accept the value of the assessment value as an argument and
return the appropriate property tax rate based upon the table provided above and assign it to an
appropriately declared local variable in main.
calcPropertyTax – this function should accept the value of the property tax Rate as an argument and
calculate and return the property tax and assign it to an appropriately declared local variable in main.
Using a Word Processing program (e.g. Microsoft Word) complete the following items related
to problem statement provided above (Do NOT use Visual Logic):
1. Design IPO charts for the calcAssessmentValue, determineTaxRate, and
calcPropertyTax functions as described above.
2. Write the pseudocode for the main module, calcAssessment function,
determineTaxRate function, and calcPropertyTax function. Be sure and follow the
pseudocode conventions provided in the textbook
Save ALL items into a SINGLE doc
Explanation / Answer
PSEUDOCODE:
function main():
double ActualPropertyValue
double AssessmentValue
double TaxRate
double PropertyTax
read ActualPropertyValue
set AssessmentValue=calcAssessmentValue(ActualPropertyValue)
set TaxRate=determineTaxRate(AssessmentValue)
set PropertyTax=calcPropertyTax(TaxRate,AssessmentValue)
write PropertyTax
end main
function calcAssessmentValue(ActualPropertyValue):
return (ActualPropertyValue*0.6)
end
function determineTaxRate(AssessmentValue):
if AssessmentValue is Greater than $10,000
TaxRate = .75
else if AssessmentValue is Between $7,500 and $10,000
TaxRate= .70
else if AssessmentValue is Between $5,000 and $7,499
TaxRate =.68
else if AssessmentValue is Below $5,000
TaxRate=.64
return TaxRate
end
function calcPropertyTax(TaxRate,AssessmentValue) :
return(TaxRate*AssessmentValue)
end
INPUT PROCESS OUTPUT ActualPropertyValue calcAssessmentValue() AssessmentValue AssessmentValue determineTaxRate() TaxRate TaxRate calcPropertyTax() PropertyTaxRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.