The LEFT function extracts the specified number of characters from the beginning (left side) of a string. LEFT("ABCDEFGH", 3) returns the first 3 characters: "ABC". Option B shows what RIGHT would return, option C is a middle substring, and option D uses 5 characters instead of 3.