Part 1 Examine the pseudocode sample provided, and explain what it does line by
ID: 3687131 • Letter: P
Question
Part 1
Examine the pseudocode sample provided, and explain what it does line by line.
Click here to access the sample. Note that this example is built on top of the one provided in week 2.
Unit 3 Pseudocode Sample
Description: This logic applies a discount on an item unless the discounted price is less than the whole sale price
Program: applyDiscount
Create variable productPrice as double
Create variable discount as double
Create variable wholesalePrice as double
Create variable discountedPrice as double
productPrice = get value from user input
discount = get value from user input
wholesalePrice = get value from user input
discountedPrice = productPrice * (1 - discount)
if (discountedPrice < wholesalePrice)
discountedPrice = wholesalePrice
end if
Display discountedPrice
End program
Line of code Please insert your explanation
Description: This logic applies a discount on an item unless ths discounted price is less than the whole sale price ?
Program: applyDiscount ?
Create variable productPrice as double ?
Create variable discount as double ?
create variable wholesalePrice as double ?
Create variable discountedPrice as double ?
productPrice = get value from user input ?
discount = get value from user input ?
wholesalePrice = get value from user input ?
discountedPrice = productPrice * (1 - discount) ?
if (discountedPrice < wholesalePrice)
discountedPrice = wholesalePrice
end if
Display discountedPrice
End program
Part 2
* Present a solution using pseudocode similar to what you saw in part 1.
* Identify the logic needed to select a payment option, and get payment details.
* The logic needs to capture the payment option from the user.
* Two options should be available for the user to select from:
* Electronic check with routing number and account number
* Credit card with account number, expiration date and CVV code
* The logic should check the selected option using a decision-making statement and provide the corresponding statements to capture the payment information based on the selection.
Insert your Pseudocode here
Explanation / Answer
EXPLANATION FOR PART-1:
For example, a product at $10 with a wholesale price of $5 and a discount of 10% returns $9.
function applyDiscount(productPrice : Double,
wholesalePrice : Double,
discount : Double)
Return Double
Create variable discountedPrice as double
discountedPrice = productPrice * (1 – discount)
if (discountedPrice < wholesalePrice)
discountedPrice = wholesalePrice
end if
return discountedPrice
End function
Present a solution using pseudocode similar to what you saw above.