Answer:
C) /etc/updatedb.conf
Explanation:
The locate command actually uses the configuration file located at /etc/updated.conf.
Microsoft Online is free to use. It includes Microsoft Excel, Word, One - Note and PowerPoint. Microsoft Outlook (email app) is free as well, although it is a seperate download.
Another way to go is via Google docs, The Google drive is rather large and safe to store reports, docs, images, etc.
Both Microsoft online and Google Docs are accessible to use on virtually any device as in: PCs, Laptops, Tablets, Androids and Iphones.
Answer:
numInsects = 16
while numInsects < 200:
print(str(numInsects) + " ", end="")
numInsects *= 2
Explanation:
*The code is in Python.
Set the numInsects as 16
Create a while loop that iterates while numInsects is smaller than 200. Inside the loop, print the value of numInsects followed by a space. Then, multiply the numInsects by 2.