Problem:
Question 1: Draw a flowchart that shows the distance a vehicle travels can be calculated as follows: Distance = Speed * Time For example, if a train travels 40 miles-per-hour (MPH) for three hours, the distance traveled is 120 miles (40 MPH * 3 hours = 120 miles). Write a program that asks the user for the speed of a vehicle (in miles-per-hour) and the number of hours it has traveled.
Question 2: Write an assembly language program that prints your first name on the screen. Use the . ASCI I pseudo-op to store the characters at the bottom of your program. Use the CHARO instruction to output the characters.
Please show all the calculation step by step.