Answer:
the HTML tag for the paragraph is <p>.
Explanation:
To insert the paragraph in the website, use the <p> tag to start the paragraph and to end the paragraph, use the closing paragraph tag that is </p>.
The paragraph tag is used inside the body tag. for example,
<html>
<head></head>
<body>
<p>this is a paragraph
</p>
</body>
</html>
Answer:
Your computer now has the IP address of that website cached, and no longer has to lookup the IP address of that domain name. The TTL of the first query is bigger than the TTL of the second query as less time was taken to execute the request.
Explanation:
On the first request to the website, the computer needs to contact other machines to find the record of the IP address.
On the second request, the computer already has the IP address and can use that to connect.
Answer:
=((SUM(PUT RANGE OF MOTHLY EXPENSES HERE)*12)+SUM(PUT RANGE OF YEARLY EXPENSES HERE))/12
Explanation:
Adds all of the Monthly Expenses : SUM(PUT RANGE OF MOTHLY EXPENSES HERE)
Multiplies the result by 12: *12
Then adds all of the Yearly Expenses to the product of Steps 1 and 2 : SUM(PUT RANGE OF YEARLY EXPENSES HERE)
Divides this new sum by 12: /12
=((SUM(PUT RANGE OF MOTHLY EXPENSES HERE)*12)+SUM(PUT RANGE OF YEARLY EXPENSES HERE)/12)