Answer:
(Interest rate/number of payments)*$170000= interest for the first month.
Interest amounts for all the months of repayment plus $170000=Total loan cost
Explanation:
Interest is the amount you pay for taking a loan from a bank on top of the original amount borrowed.
Factors affecting how much interest is paid are; the principal amount, the loan terms, repayment schedule, the repayment amount and the rate of interest.
The interest paid=(rate of interest/number of payments to make)*principal amount borrowed.
You divide the interest with number of payments done in a year where monthly are divided by 12.Multiplying it by loan balance in the first month which is your principal amount gives the interest rate to pay for that month.
You new loan balance will be= Principal -(repayment-interest)
Do this for the period the loan should take.
Add all the interest amount to original borrowed amount to get total cost of the loan after the period of time.
Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation:
Ucsaaaaauxx627384772938282’cc ed un e uff ridicolizzarla +golfista
Answer:
Mass, in physics, quantitative measure of inertia, a fundamental property of all matter.
Explanation:
Mass is the matter that makes up objects
Answer: heat loss through wall is 16.58034kW
Temperature of inside wall surface is 47°c
Temperature of outside wall surface is -2.7°c
Explanation:detailed calculation and explanation is shown in the image below.