Answer:
current_price = int(input("Enter current price: "))
last_months_price = int(input("Enter last month's price: "))
print("This house is $%d. The change is a $%d since last month." % (current_price, current_price - last_months_price))
print("The estimated monthly mortgage is $%d." % int(current_price*0.045/12))
Explanation:
- Ask the user to enter the values for <em>current_price</em> and <em>last_months_price</em>.
- Print the current price.
- Calculate change from last month (current_price - last_months_price) and print it.
- Calculate the mortgage (using given formula (current_price * 0.051) / 12) and print it.
D) both a and b
Microwaves are used to heat foods in ovens. We all know that. They are also used for data and information transfer. Microwaves are used in wifi, gps, and radio astronomy.
Answer:
"Datawarehouse" is the correct answer for the above question.
Explanation:
- The Datawarehouse is a collection of large data or database which holds the historical data and the current or operation data for future decisions of the profit of the organization.
- The decision can be made after being analyzed the data which is extracted from the Dataware house.
- The above question also states the database which works like the above-defined concept. Hence Datawarehouse is the correct answer to the above question.