Home /
Expert Answers /
Computer Science /
need-a-hand-trace-table-of-this-flowchart-based-on-this-order-input-lot-number-1-has-a-property-va-pa520
(Solved): Need a Hand Trace Table of this Flowchart based on this order
input:
Lot number 1 has a property va ...
Need a Hand Trace Table of this Flowchart based on this order
input:
Lot number 1 has a property value of 1000.
Lot number 2 has a property value of 2000.
Lot number 3 has a property value of 500.
Lot 0 will end the program.
Start showTax() Declare Integer lotNumber Declare Real property Value, tax CGI- Display "Enter the property's lot number" Constant Real TAX_FACTOR = 0.0065 Display "(or enter 0 to end). Display "Enter the property's value." Input lotNumber Input property Value Set tax = property Value TAX_FACTOR True lotNumber != 0 Display "The property's tax is $", tax show Tax() False Return End Display "Enter the lot number for the" -- Display "next property (or O to end). Input lotNumber
TRACE TABLE- It helps to determine what a given flow chart has been designed for and finds the output for a given set of data to test if the flowchart gives the expected results. Input: Lot number 1 has a property value of 1000. Lot number 2 has a pr