The terminal is a text interface where you type commands to control Linux. The prompt shows your username, hostname, and current directory. Press Tab to autocomplete and the up arrow to repeat previous commands.
Opening the Terminal
The terminal (shell) lets you control your system with text commands. The most common shell is bash (Bourne Again Shell).
$ whoami # current user
$ hostname # computer name
$ date # current date/time
$ uptime # how long system has been running
$ echo "Hello" # print text