Answer: I am pretty sure it's RAM
Explanation:
I'm not 100% positive bc I haven't gotten my scores back yet but I think that's it.
Audio designer
Audio designers plan , sound effects, music and pretty much anything that has to do with sound in a video game
Answer:
Written in Python:
hours = int(input("Hours: "))
mins = int(input("Minutes: "))
result = hours * 60 + mins
print("Result: "+str(result)+" minutes")
Explanation:
This line prompts user for hours
hours = int(input("Hours: "))
This line prompts user for minutes
mins = int(input("Minutes: "))
This line calculates the required output
result = hours * 60 + mins
This line prints the required output in minutes
print("Result: "+str(result)+" minutes")
Highlight A2 and drag down and select the cells to A13. Then do ctrl+c to copy.
Next Highlight the cell B2 and then do ctrl+v. This will paste all the cells