Which grep pattern matches only lines that begin with the lowercase text lab?
grep
lab
grep "^lab" practice.txt
grep -i "lab" practice.txt
grep "lab$" practice.txt
grep "lab" practice.txt