1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Alinara [238K]
3 years ago
11

House real estate summary Sites like Zillow get input about house prices from a database and provide nice summaries for readers.

Write a program with two inputs, current price and last month's price (both integers). Then, output a summary listing the price, the change since last month, and the estimated monthly mortgage computed as (current_price * 0.051) / 12. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('{:.2f}'.format(your_value)) Ex: If the input is: 200000 210000 the output is: This house is $200000. The change is $-10000 since last month. The estimated monthly mortgage is $850.00.
Computers and Technology
1 answer:
Ksivusya [100]3 years ago
6 0

Answer:

current_price = int(input("Enter the current price: "))

last_months_price = int(input("Enter the last month's price: "))

print("This house is $" + str(current_price))

print("The change is $" + str(current_price - last_months_price) + " since last month")

print("The estimated monthly mortgage is ${:.2f}".format((current_price * 0.051) / 12))

Explanation:

Ask the user to enter the current price and last month's price

Print the current price

Print the change in the price, subtract the last month's price from the current price

Print the estimated monthly mortgage, use the given formula to calculate, in required format

You might be interested in
What is a gamer?
mixer [17]

Answer:

It is <em>definitely </em>D.

Explanation:

I am a gamer myself so this question is easy for me. It's slim to none to be wrong when you view my answer!!!

7 0
2 years ago
Write an algorithm to settle the following question:
Vesnalui [34]

Answer:

<u>algorithm</u>

original = float(raw_input("Enter initial balance: "))

interest = float(raw_input("Enter promised return: "))

expenses = float(raw_input("Enter monthly expenses: "))

interest = interest / 100 / 12

month = 0

balance = original

if balance * interest - expenses >= 0:

print "You don't need to worry."

else:

while balance + balance * interest - expenses >= 0: # negation of the if condition

balance = balance + interest * balance # in one month

balance = balance - expenses

month = month + 1

print month, balance

print month / 12, "years and", month % 12, "months"

6 0
3 years ago
Which network protocol is used to handle delivery of information
rodikova [14]

Answer:

TCP

Explanation:

TCP stands for Transmission Control Protocol a communications standard that enables application programs and computing devices to exchange messages over a network. It is designed to send packets across the internet and ensure the successful delivery of data and messages over networks.

6 0
2 years ago
How do database systems turn data into information?
Simora [160]

Answer:

1. Collect only useful data

Before collecting data, take a step back and ask the fundamental question: Can I turn this data into information or knowledge to help me make decisions that will improve services and reduce costs? When you understand the answer to that question, you will be in a better position to establish what data to collect and how to turn it into information you need to make decisions.

2. Use analytical tools

Use tools that help you analyze the information and data you have. Export the data from your system if necessary and load it into Excel. Use Excel’s pivot table tool to analyze data and convert it into information. You can use other software or enterprise systems that are designed for data analysis as well. The key thing is to step beyond lists and printouts and start analyzing the data in a way that’s meaningful to your responsibilities.

3. Get accurate data

Of course, you need good data in the first place. Make sure you have what you need and it is reasonably accurate, but consider how you will use it and how much of a difference accurate data will make in your decision-making.

Accuracy or detail are also something you need to manage so you don’t end up overwhelmed with detail, or spend too much effort getting detail or accuracy that simply doesn’t matter in the end. For instance, if you are tracking costs as part of a process in order to make management decisions, does your tracking method have to tie into the financial system and match to the penny? Does it have to be a live link with your own system, or can you download the needed information from the financial system daily or weekly?

4. Convert data to information

Information is when you take the data you have and analyze it or manipulate it by combining it with other data, trending it over time, assessing or analyzing the outliers that need to be dealt with, and, most important, applying your own experience and knowledge to transform that data into something you can use to make a decision with.

4 0
3 years ago
Carla wants to add the existing field "Order ID Number" to an Access form. Which steps will allow her to complete
lubasha [3.4K]

Answer:

in the Design section, select the Form Design Tools tab → select Add Existing Fields — drag and drop the field

"Order ID Number" into the form

Explanation:

I just took it

5 0
3 years ago
Other questions:
  • Regarding an intrusion detection system (IDS), stateful matching looks for specific sequences appearing across several packets i
    9·1 answer
  • Mass production usually uses an _______________ ____________ or production line technique.
    7·1 answer
  • What is the key benefit of using RAM in a computer?
    12·1 answer
  • Mr. Olgesandravich is proctoring students working at their own pace in an online class. He is generating a spreadsheet that show
    15·1 answer
  • When power is completely removed from your computer
    11·1 answer
  • What is another word for: a location in memory that contains a value? A. integer B. Boolean C. variable D. float PLEASE HELP URG
    10·1 answer
  • Activity 1.1.4 What is Technology?
    10·1 answer
  • How do you think electronic spreadsheets have transformed businesses today?​
    6·1 answer
  • (b) Cell B12 contains the formula, ROUND((SUM(B5:B9)*D1),1).
    15·1 answer
  • Suppose that you have declared a numeric array named numbers, and two of its elements are numbers[1] and numbers[4]. You know th
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!