Answer:
speed = float(input("Enter the speed: "))
hours = int(input("Enter the hours: "))
distance = 0
for i in range(hours):
distance += speed * 1
print("The distance after " + str(i+1) + ". hour(s): " + str(distance))
Explanation:
*The code is in Python.
Ask the user to enter the speed and the hours
Initialize the distance as 0
Create a for loop that iterates hours times. Inside the loop, calculate the cumulative distance traveled at the end of each hour and print it (Note that the distance = speed x hour)
Answer:
system software is the software which control overall operation of the computer . For eg. Ms.dos ,window 2003 ,etc whereas application software is a software which work on the top of operating system to solve number of problems .For eg. Ms.word,Ms.excel,etc
Answer:
The motherboard must be configured to accept a particular type of memory.
Explanation:
The motherboard must be configured to accept a particular type of memory, especially when dealing with multi-channel memory. On motherboard, different modes can be configured to run simultaneously . For motherboard to take advantage of the triple memory channels on the board. You can also check the manual that came with the motherboard to know how to configure it.
Answer:
Top to bottom
Explanation:
A sequence diagram shows the sequence or the order in which the interaction between components takes place.
It places them in order of the occurrence of the events or interactions between the components or objects thus arranging these from top to bottom.
The sequence diagram shows the way an object in a system functions and the order it follows.