A county collects property taxes on the assessment value of property, which is 6
ID: 3788416 • Letter: A
Question
A county collects property taxes on the assessment value of property, which is 60% of the property's actual value. For example,if an acre of land is valued at $10,000, it's assement value is $6,000. Thje property tax is then .64 cents for each $100 of the assessment value. The taxfor the acre assessed at $6,000 will be $38.40. Design a modular program that will ask for the actual value of a piece of property and displays the assessment value and property tax
Visual Studio
i need this question in pseudocode using python. it needs to have proper modules and call backs and reference parameters
Explanation / Answer
Pseudo code below,
plz modify it according to your need
def calcTax(value): # function to calculate value of tax
assesment_value = (60/100)*value
print("value ="+str(assesment_value))
tax_payable = (assesment_value/100)*.64
print("Tax Payable for input property value is: " + str(tax_payable))
return tax_payable
#inputting the property value
value1=input("Enter the actual value of property: ")
prop_value=float(value1)
# Calling the function and passing the value
calcTax(value1)
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.