How do you create a new directory called "flower"?
-
newdir flower
-
mkdir flower
-
crdir
-
mkdir
B
Correct answer
Explanation
The mkdir command in Unix creates a new directory. You must specify the directory name as an argument, so 'mkdir flower' creates a directory called 'flower'. Option D is incorrect because it's missing the directory name argument. Option A (newdir) and C (crdir) are not valid Unix commands.