Answer:
investmentAmount = float(input("enter the investment amount: "))
annualInterestRate = float(input("enter the Annual Interest Rate: "))
numYears = int(input("Enter NUmber of Years: "))
monthlyInterestRate = annualInterestRate/12
futureInvestmentValue = investmentAmount * (1 + monthlyInterestRate)*(numYears*12)
print("The Future Investment Value is: ")
print(futureInvestmentValue)
Explanation:
Using python programming language as required, we use the input function to prompt user for inputs for each of the variables.
There is a conversion from the variable annualInterestRate to monthlyInterestRate before the formula for the futureInvestmentValue is applied
Answer:
The system’s non-user-specific configurations are stored in the HKEY_LO-
CAL_MACHINE root key of the Registry.
Explanation:
Answer:
Data is raw or unorganized facts
Explanation:
If something outputs something, it means it brings out something
Answer:
Is there an early pay discount?
Explanation:
This determines and instructs what path the code should take,
if there is no early pay discount, it has different instructions to follow.