Answer:
the teacher said a (dash) reads pages on website pls answer me now i have to write it now
i believe the Nintendo 64
Answer:
b. entered later but dated as of the last day of the period.
Explanation:
Because collecting the adjustment data requires time, the adjusting entries are often entered later but dated as of the last day of the period.
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)))
Answer: I believe the answer is 6
Explanation: taking 35 and 65 out leaves the rest of the numbers; 15,25,45,55, and 75.