Answer: I believe it’s A operating system
Explanation: The mouse is something you can touch wich is hardware not software, a disk drive is also hardware not software, and so is a monitor.Software is something inside the computer so it’s a operating system.
Answer:
1) there should be boundaries because you never know what could happen on the internet as people tend to not have control of who is on theyre account or texting them,
2) if you have a phone you should be responsible and not do something that could get you in alot of trouble ,
3) it's important because if somebody else gets your information things can be sent that you didnt send ,that can get you in legal trouble or start a fued between people,
5) comments only matter if you let them matter as people's opinions shouldn't matter to you as long as your happy,
6) block, report , and notify a trusted adult.
Answer:
b. Thin provisioning
Explanation:
Thin provisioning is a storage space feature that makes allocating disk storage space flexible based on the space needed by each user, it improves the way storage space is utilized.
Answer:
import os
import shutil
# directory holding the file to be used
curr_path = "C:\\Users\\user\\Desktop\\test"
# change to the target directory absolute path
os.chdir(curr_path)
# create new folder in current directory
os.mkdir('C:\\Users\\user\\Desktop\\newFolder')
for root, dirs, files in os.walk("."):
for name in files:
# check if it is pdf
if name.endswith(".pdf"):
# find path
path = os.path.join(root, name)
# find size
size = os.stat(path).st_size
# print absolute path and size
print(os.path.abspath(path), "\t", size)
# copy the file to the new folder
shutil.copy(path, 'C:\\Users\\user\\Desktop\\newFolder\\'+name)
Explanation:
The python program uses the os and shutil python module, which is used to interact with the computer system operating system to get the absolute path of all the pdf text files using the os.walk() method to create an iterator to loop over, printing the path string and the file size. The shutil.copy() is used to make a copy of each pdf file in the new folder.