Answer:
Here is code in python .
#function to calculate miles traveled
# pass two parameter in the function "miles_per_hour" and "minutes_traveled"
def mph_and_minutes_to_miles(miles_per_hour, minutes_traveled):
# convert minutes to hours
hours_traveled = minutes_traveled / 60.0
#calculate total miles traveled
miles_traveled = hours_traveled * miles_per_hour
#return the value
return miles_traveled
#read input from user
miles_per_hour = float(input())
minutes_traveled = float(input())
#call the function and print the output
print('Miles: %f' % mph_and_minutes_to_miles(miles_per_hour, minutes_traveled))
Explanation:
Read the value of "miles_per_hour" and "minutes_traveled" from user. call the function mph_and_minutes_to_miles() with those two parameters.calculate total hours from the minutes_traveled by dividing it with 60. then calculate the total miles by multiply hours_traveled * miles_per_hour. then return the miles travelled.
Output:
20
150
Miles: 50.000000
The answer that best fits the blank provided is the term is DATA COLLECTION. The main goal of data collection is the gathering of relevant data regarding the system that is under study. There are many ways of data collection and it would differ depending on what type of information you are going to gather.
Answer:
FALSE
Explanation:
HTTP ( Hyper text transfer protocol ) : HTTP is a protocol used by the world wide web and it defines how messages are formatted and transmitted, they are actually not part of the formatting and they also determines actions to be taken by web browsers in response to commands.
JavaScript, CSS, HTML are all markup languages written in codes while creating a website/web page.
D HTML ( dynamic HTML ) is a collection of technologies like CSS, JAVA SCRIPT and HTML to create Animated and interactive websites and this entails a lot of coding and formatting.
Answer:
See Explanation Section
Explanation:
A question like this is best presented or supported with attachments because the attachment gives a clear description of the question.
However, I'll answer your question in general terms.
A paragraph in HTML is tagged using the <p> and </p> tag.
For instance:
<p> This is a paragraph</p>
For headings;
There are 6 level of headings in HTML; h1 to h6.
The tag to use depends on the level of the headings.
Assuming the heading is level 1;
An example is
<h1> This is a heading</h1>
Use the examples I cited to answer your question