Answer:
b
Explanation:
CPU manual provides guides to use a CPU.
Assembler manual provides guide on how to use an assembler and so is the case for compiler.
For a particular machine, it set of instructinos are available with the programmer.
Answer:
PMPs are typically referred to interchangeably.
Explanation:
Answer:
No
because spreadsheet is used for calculation not for writing address
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.