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:
1. Hydroxychloroquine is the healing agent
2. Chloroquine does not have a hydroxyl group attached
Explanation:
Chloroquine and Hydroxy chloroquine have been in use for many decades for malaria treatment and prophylaxis.
It was found that there was a high possibility of being poisoned when treatment of chloroquine was administered. In 1946 the hydroxyl group replaced the CH3₃ (methyl) group with an ⁻OH (hydroxyl) group as indicated by the attachment. Toxicity by chloroquine was reduced to 40% when the ⁻OH group was attached.
Later chloroquine was added to formulas that are used for cleaning pools and fish tanks.
Both of these chemicals should be used by following the guide lines and under medical supervision if taken for any illness.
Answer:
Versatility refers to the capability of a computer to perform different kinds of works with same accuracy and efficiency.
Explanation:
thank me later