The sender forms an idea.The sender encodes the idea in a message.
The principle of page layout is Mario using significantly in this image is emphasis.
<h3>What is page layout use for?</h3>
Page layout is known to be a tool that is often used to make a documents to have a more custom look, such as newsletters, books, and others.
Note that The principle of page layout is Mario using significantly in this image is emphasis because he wants all to know the kind of sport in question.
Learn more about page layout from
brainly.com/question/2501083
#SPJ1
Answer:
Written in Python
import math
principal = 8000
rate = 0.025
for i in range(1, 11):
amount = principal + principal * rate
principal = amount
print("Year "+str(i)+": "+str(round(amount,2)))
Explanation:
This line imports math library
import math
This line initializes principal amount to 8000
principal = 8000
This line initializes rate to 0.025
rate = 0.025
The following is an iteration from year 1 to 10
for i in range(1, 11):
This calculates the amount at the end of the year
amount = principal + principal * rate
This calculates the amount at the beginning of the next year
principal = amount
This prints the calculated amount
print("Year "+str(i)+": "+str(round(amount,2)))