Which of the following commands will count the number of lines in TechnicalForum.txt which begins with the word 'the'?

Group of answer choices

fgrep -c '^the' TechnicalForum.txt

fgrep 'the' TechnicalForum.txt

egrep -c '^the' TechnicalForum.txt

egrep '^the' TechnicalForum.txt

egrep -c '^the' TechnicalForum.txt