Multiple choice technology programming languages If $string contains abcdefgh , what will the following call return? substr($string, -2, 2); abc efgh gh Reveal answer Fill a bubble to check yourself D Correct answer Explanation The substr function call with a negative offset counts back from the end of the string. A start index of -2 extracts the last two characters of the string abcdefgh, which are g and h.