Answer:
To avoid contact with any contaminants that might be able to destroy the data.
Explanation:
Hard drives are usually self-contained, sealed devices and the case for the hard drive must remain sealed closed to avoid contact with any contaminants that might be able to destroy the data.
True, if you plan on running a lot of applications at the same time, you should get more RAM for your computer. 8+ GB of DDR4 ram should be good for every day applications. 16GB should be more than enough for everything for the next couple years.
Answer:
DVD Drive, Headphones
Explanation:
You need a CPU for sure, it is the main component known as the Central Processing Unit, and it provides instructios for the computer. A monitor is needed to visually see the internet, without a monitor, you would just be looking at your PC.
Headphones are not necessary because they are for personal audio, and most of the time, the internet is not audio.
A DVD drive is used to play DVD disks, which contains videos, movies, games, etc. The internet is not on a DVD.]
-Chetan K
Answer:
mkdir homeworks // make a new directory called homeworks.
touch homework_instructions.txt //create a file called homework_instruction
sudo -i // login as root user with password.
chmod u+rwx homework_instructions.txt // allow user access all permissions
chmod go-wx homework_instructions.txt // remove write and execute permissions for group and others if present
chmod go+r homework_instructions.txt // adds read permission to group and others if absent.
grep POINTS homework_instructions.txt | ls -n
Explanation:
The Linux commands above first create a directory and create and save the homework_instructions.txt file in it. The sudo or su command is used to login as a root user to the system to access administrative privileges.
The user permission is configured to read, write and execute the text file while the group and others are only configured to read the file.