The wc (word count) command counts lines (-l), words (-w), characters (-c or -m), and bytes (-c). It does not have a built-in option to count the number of files. To count files, you would use commands like ls, find, or combined with wc -l. Option B is correct because wc operates on file contents, not file enumeration.