How do I remove a file/directory?
B
Correct answer
Explanation
rmdir (remove directory) is specifically designed to delete empty directories. rm can remove both files and directories (with -r flag), but rmdir is the dedicated command for directories and is safer as it only works on empty ones, preventing accidental data loss.