How do you create a new directory called "sample"?
-
newdir sample
-
mkdir sample
-
crdir sample
-
makedir sample
B
Correct answer
Explanation
The 'mkdir' command creates directories in Unix/Linux systems. 'mkdir sample' creates a new directory named 'sample' in the current location. Commands like 'newdir', 'crdir', and 'makedir' are not standard Unix commands. The name 'mkdir' stands for 'make directory'.