Answer:
The program is given below with appropriate comments for better understanding
Explanation:
#Program
# foot stride = 2.5 feet
# 1 mile = 5280 feet
no_stride_first_min = int(input('Enter the number strides made durng the first minute of jogging: '))
no_stride_last_min = int(input('Enter the number strides made durng the last minute of jogging: '))
avg_stride_one_min = (no_stride_first_min + no_stride_last_min)/2 # calculates the average stride per minute
jogging_duration = float(input('Enter the total time spent jogging in hours and minute: '))
jogging_duration_hours = int(jogging_duration) # gets the hour
jogging_duration_min = jogging_duration - int(jogging_duration) # gets the minute
tot_jogging_duration_min = jogging_duration_hours*60 + jogging_duration_min # calculates total time in minutes
dist_feet = (avg_stride_one_min*2.5)*tot_jogging_duration_min # calculates the total distance in feet
dist_miles = dist_feet/5280 # calculates the total distance in mile
print('Distance traveled in miles = {0:.2f} miles'.format(dist_miles))
Automobiles and Airplanes is what I can think of
Answer:
C
Explanation:
Boolean Algebra deals with either a one or a zero and how to manipulate them in computers or elsewhere. The "choice" option may not work, since for text it must be enclosed in quotation marks, usually. For "again," it's text and not a 1 or 0. So, the answer is C, since this is a 0.
Answer:
sampling distribution
Explanation:
Sampling distribution is distribution of multiple samples' satistics of a population.
Answer:
Circuit attached with explanation
Explanation:
Hi Dear,
A circuit is attached for your reference.
When you press "start" PB, the supply reaches the motor starter relay coil "M" that is also in parallel with the "start" PB which allows the motor to remain ON even when you release "start" PB as supply to relay coil is directly from supply "L" through "M".
To stop motor just press "stop" PB and the circuit breaks which de-energize the relay coil and the motor stops.
Hope this finds easy to you.