Answer:
Option =42*.80
Explanation:
We can define a formula in Microsoft Excel using which is always started with "=" and then followed with the mathematical rule defined on the target columns or rows.
In this question, we are expected to calculate the marked down price for 20 percent. This means the new sale price will be 80% of the original sale price. Since the original place is in cell A2, we can define a formula using =A2* .80 to get the expected result.
Answer:
Option D) 5
Explanation:
4 subnet bits is 240 mask which provides
, i.e., 16 subnets and provides 14 hosts for each.
In order to achieve the target and provide correct subnet mask, 5 subnet bits are required to be borrowed from the host of a classful network address as then the addition of one more subnet bit would result in 248 mask which in turn gives 5 subnet bits which results in
, i.e., 32 subnets and 3 host with 6 host per subnet.
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:
third partying and computer hackers.
Explanation: