Big files are everywhere on Linux — logs, data dumps, config exports. You rarely want to dump the whole thing to the screen. Two commands let you peek at just the part you care about:
head — show the first lines of a filetail — show the last lines of a fileYou'll also meet tail -f, which follows a file live — the single most useful command for watching a log in real time.
Your files live in the projects folder: numbers.txt (20 numbered lines) and access.log (a small web log). First move into that folder.