Multiple choice technology

LEFT ("ABCDEFGH",3) =?

  1. ABC

  2. FGH

  3. DEFGH

  4. ABCDE

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

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.