Answer:
The "a" tag or <a></a> and its "h<u>r</u>ef" attribute <a href="#"></a>
Explanation:
In html there is only one way to create a link to an external source or a bookmark. The tag is created using the element <a>.
The attribute "href" is then added to describe the link of where it is to point to.
Example:
<a href="google.com">Go to Google</a>
While the text in between the tag describes what the link is about.
It would be A because B could be answered best with a poll graph, C with a pie graph, and D with a bar graph. Line graphs typically show speed and rate so A makes the most sense, but you are still able to do the other questions on a line graph.
Answer:
B
Explanation:
it shows you your weaknesses so you can work on them so you can find your way to success
Answer:
polygon_sides = {"Triangle" : 3,"Square" : 5}
n_polygons = {}
for key in polygon_sides:
n_polygons[polygon_sides[key]] = key
print("Polygon sides: ", polygon_sides)
print("Names of polygons: ", n_polygons)
Explanation:
- Initialize the polygon_sides dictionary.
- Loop through polygon_sides dictionary and assign the associated names to n_polygons variable.
- Display the polygon sides and the names of polygons.