It took her 9 more months but Marina has managed to save the full $725 plus more to cover fees to pay off the pay-day loan company. However, she forgot to account for the interest that had been compounding over time. Consider it is now 275 days later, the remaining loan was $725 and the APR is 47% compounded daily.
What is the total amount that Marina must now pay in order to pay off her the loan, accounting for interest?
What is the total amount of interest paid (not including fees)?
Answer:
she loaned 750 dollars.
it took her 9 months to repay it.
it was 275 days since she took out the loan.
the interest rate was 47% per year compounded daily.
the daily interest rate would be 47% / 365 / 100 = .0012876712 per day.
this assumes 365 days in a year, which is the standard assumption that i know of.
the future value of 750 for 275 days would be based on the formula of f = p * (1 + r) ^ n
f is the future value
p is the present value
r is the interest rate per time period (days in this case)
n is the number of time periods (days in this case).
the formula becomes:
f = 750 * (1 + .0012876712) ^ 275
solve for f to get:
f = 1068.440089.
that's the future value of the loan.
it's what she owes.
the interest rate on the loan is that value minus 750 = 318.440089.
that's how much extra she needs to pay in addition to whatever fees she was charged.
Which elements of text can be changed using automatic formatting? Check all that apply.
A) smart quotes
B) accidental usage of the Caps Lock key
C) fractions
D) the zoom percentage
E) the addition of special characters
Answer:a, d, e
Explanation:
Write a class called Dragon. A Dragon should have a name, a level, and a boolean variable, canBreatheFire, indicating whether or not the dragon can breathe fire. The class should have getter methods for all of these variables - getName, getLevel, and isFireBreather, respectively.
Answer: A dragon name could be name Holls and at level 14 and can breathe fire
Explanation:
Write VHDL code for the circuit corresponding to an 8-bit Carry Lookahead Adder (CLA) using structural VHDL (port maps). (To be completed before your lab session.)
Answer:
perdo si la pusiera es español te ayudo pero no esta en español
A student will not be allowed to sit in exam if his/her attendance is less than 75% .
Take the following input from user
Number of classes held
Number of classes attended
And print
Percentage of class attended
Is student allowed to sit in exam or not .
Answer:
Sorry, this is too vague to understand as you don’t have any charts, graphs, or anything
Explanation:
Subtract 01101011-00101010
Answer:
Alexa says minus 8
Explanation:
When using the Mirror command you can delete the source object as the last step of the command. True or false
Answer:
The anwser is true it is true.
What is a good slogan for digital citizenship?
Answer:
No matter where you are in the world you have a place to go to
Explanation:
In this world of globalization it makes sense you would be anywhere in the world and still have a place to go to.
Answer:
"If you are on social media, and you are not learning, not laughing, not being inspired or not networking, then you are using it wrong."
Explanation: (this is the freedom of speech not my words.) but there true even though and that we all (i dont know if its everyone but y'know) have to stay inside during this pandemic try to make the most of it!
I need help I would really appreciate it
Answer:
Checks if it is a multiple of 3 and 5
Explanation:
Its an if statement using modulus division to check for a remainder. It checks if a number is a multiple of 3 AND 5. (&& and & both mean and in Java).
If the remainder of both is 0 then that means the mystery number is a multiple of both 3 and 5.
You may have come across websites that not only ask you for a username and password, but then ask you to answer pre-selected personal questions about yourself. What can you conclude about this procedure and how it may increase your security?
Answer:
The questions are used to secure and identify you furthermore. Answering personal questions that only you can answer will deter someone from hacking into your account that easily.
Explanation:
What should Stephan do to improve his study environment? Check all that apply. remove distracting technology have easy access to his study resources ask his parents to leave the room leave some food and drink for snacks while studying allow his dad to stay only if he is helping with studying remove all food and drink from the room
Answer:
I. Remove distracting technology.
II. Have easy access to his study resources.
III. Allow his dad to stay only if he is helping with studying.
Explanation:
A study environment can be defined as a place set aside for reading and studying of educational materials.
In order to facilitate or enhance the ability of an individual (student) to learn and assimilate information quickly, it is very important to ensure that the study environment is devoid of any form of distraction and contains the necessary study materials (resources).
Hence, to improve his study environment, Stephan should do the following;
I. Remove distracting technology such as television, radio, games, etc.
II. Have easy access to his study resources. Stephan shouldn't keep his study materials far away from his study area.
III. Allow his dad to stay only if he is helping with studying.
Answer:the person above it right
Explanation:
Write a program that reads in an integer and breaks it into a sequence of individual digits. For example, the input 16384 is displayed as 1 6 3 8 4 Make sure the input has no more than five characters and is not negative. (You don’t have to do this through code) Just make sure you enter correct data when running the program.
Answer:
Here you go :)
Explanation:
(This also works for strings as well)
usr = input("Enter a number: ")
usr = list(usr)
for n in range(len(usr)):
print(usr[n], end= " ")
The program that reads in an integer and breaks it into a sequence of individual digits is in the explanation part.
What is programming?Programming tasks include analysis, algorithm generation, algorithm accuracy and resource consumption profiling, and algorithm implementation.
Computer programming is the process of writing code that instructs a computer, application, or software program on how to perform specific actions.
Here is a Python program that reads in an integer and breaks it into a sequence of individual digits:
num = input("Enter a positive integer with no more than five digits: ")
if num.isdigit() and len(num) <= 5:
for digit in num:
print(digit, end=' ')
else:
print("Invalid input!")
Thus, this program first prompts the user to enter a positive integer with no more than five digits.
For more details regarding programming, visit:
https://brainly.com/question/11023419
#SPJ2