To convert the inputs to dollars and cents, we make use of a combination of multiplication and addition.
The program written in Python where comments are used to explain each line is as follows:
<em />
<em>#This gets input for the number of quarters</em>
quarters = int(input("Quarters: "))
<em>#This gets input for the number of dimes</em>
dimes = int(input("Dimes: "))
<em>#This gets input for the number of nickels</em>
nickels= int(input("Nickels: "))
<em>#This gets input for the number of pennies</em>
pennies= int(input("Pennies: "))
<em>#This converts the amount to dollars and cents</em>
dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01
<em>#This prints the amount to 2 decimal places</em>
print("Amount ${:.2f}".format(dollars))
Read more about Python programs at:
brainly.com/question/22841107
Answer:
I think the answer is to translate messages from one machine’s programming language into another
Explanation:
Answer:
b. ethernet
Explanation:
It was an ethernet that was developed in the 1970s that improved the ability to send the information over the network. It is the most widely used method to connect the computers in a LAN or the local area network, ever since 1980 when it was first introduced for commercial use. And it is being used in bulk even today.
Answer:
Analysis is an important aspect of the job because it makes proper decision making process.
The values of teamwork are to find the best solution to problems and motivate the whole team.
The benefits of brainstorming include outside input, idea building, routine breaks, .etc...
The advantages of project planning are:
- Team members become responsible for tasks assigned to them
- Planning is required so that labor, finance and time resources can be thoroughly considered, including the risk of project delays due to some members working on several projects at the same time
- Allowance for contingencies should be included in project plans so that if and when they arise, risk mitigation strategies are ready.
- With a clear direction to follow, team members don’t get sidetracked by their own ideas.
Explanation:
<span>select New from the File tab
Hope it helped!</span>