Answer:
Good job!! You deserve it.
Explanation:
HTML5
HTML5 has fewer plug-ins like the ability to standardize how audio and video are presented on a Web page. It introduces the <video> element designed to remove the need to install 3rd party add-ons and plug-ins like adobe flash player. It also adds the <audio> element too that allows pages to smoothly add audio files.
Answer:
def corresponding_of_lists(lst1, lst2):
c = ""
corresponding_list = []
if (lst1 is None) or (lst2 is None):
return None
else:
for i in lst1:
for j in lst2:
c = "(" + str(i) + "," + str(j) + ")"
corresponding_list.append(c)
return corresponding_list
Explanation:
- Create a function called corresponding_of_lists that takes two lists as parameter
- Initialize an empty list to hold the corresponding values
- Check if any of the lists are null, if they are return None
- Otherwise, get the corresponding elements and put them into the corresponding_list
Return the corresponding_list
Answer:
22.5
Explanation:
My weight = 100 pounds
Sister's weight = 150
Distance from fulcrum = 15 ft
Distance has an inverse proportion with weight
Distance = k/w
Where k is a constant
K = distance x weight
K = 100 x distance
150 x 15 = 100 distance
2250 = 100 distance
Divide through by 100 to get distance
2250/100 = distance
Distance = 22.5