Question

A county collects property taxes on the assessment value of property, which is 60 percent of...

A county collects property taxes on the assessment value of property, which is 60 percent of the property's actual value. If an acre of land is valued at $10,000, its assessment value is $6,000. The property tax is then $0.64 for each $100 of the assessment value. The tax for the acre assessed at $6,000 will be $38.40. Design a modular program that asks for the actual value of a piece of property and displays the assessment value and property tax. (In pseudocode please)

Homework Answers

Answer #1

Here is the simple pseudocode

==============================================================================

// input property value from user

property_value = INPUT ("Enter property value: $")

// calculate assessment value using the below calculation
assessment_value = property_value*0.6

// calculate tax below
tax = assessment_value*0.64/100

// output the assessment value and tax
OUTPUT ('Assessment Value: ${}',assessment_value)
OUTPUT ('Property Tax: ${}',tax)

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT