Answer:
insert, illustrations, click and drag, slide show
Explanation:
i got it right
Answer:
I think it's C. but not a 100%
Answer:
Microsoft PowerPoint.
Explanation:
Because, it is industry standard and widely recognized and used in world.
Answer:
see explaination
Explanation:
def words2number(s):
words = s.split()
numbers = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
result = ""
for word in words:
if word in numbers:
result += str(numbers.index(word))
return result