Answer:
false
Explanation:
Select the comment icon. on the slide. The Comments pane will open and you can see comments for that slide.
Select Reply to respond to a comment.
Select the Next or Back buttons to go between comments and slides.
Answer:
Its word count so she knows how much words she is writing
Explanation:
<span><span>CTRL+HOME then delete, backspace, end.</span></span>
Answer:
b. False
Explanation:
Difficult economic times, increased global competition, demand for customization, and increased consumer sophistication does not direct companies to hire more employees and outsource middle managers.
Rather, companies tend to invest new technologies, information systems to satisfy the needs in global competition, consumer sophistication and customization.
Middle managers outsourced cannot deal these issues effectively, therefore they need to be company employees.
In difficult economic times, companies does not want to hire extra employees because of increased cost.
Answer:
See explaination for the code
Explanation:
def wordsOfFrequency(words, freq):
d = {}
res = []
for i in range(len(words)):
if(words[i].lower() in d):
d[words[i].lower()] = d[words[i].lower()] + 1
else:
d[words[i].lower()] = 1
for word in words:
if d[word.lower()]==freq:
res.append(word)
return res
Note:
First a dictionary is created to keep the count of the lowercase form of each word.
Then, using another for loop, each word count is matched with the freq, if it matches, the word is appended to the result list res.
Finally the res list is appended.