I believe this should have some multiple choice options: Application, System, Volume, Security.
The correct answer is volume.
Explanation:
The disk subsystem - the files will be too large to be stored completely in system memory and so must be streamed from the disk, which will need to be both large and fast.
Number 2 is the correct answer
Answer:
cp /path/to/source.txt .
is the general format of copying a file to the current directory
cp ~/UnixCourse/fileAsst/TweedleDee/hatter.txt .
You can refer to the current directory with a dot (.)
Explanation:
First, we would like to delete all files in our current directory (commandsAsst directory). To delete the files inside the directory, we would run the following command:
rm -r commandsAsst/*
This command delete the files recursively. Usually, the command for deleting is rm -r. The operator * run rm -r on every file or directory within commandsAsst.
Answer:
10
Explanation:
To convert decimal to binary, you just count like normal, but instead of regrouping when adding 1 when you reach 9, you regroup when you reach 1.
in this case, you would count like this:
0
1
10