Execute the following code in your terminal:
# check your current working directory
pwd
# make a directory named tmp
mkdir tmp
# move into tmp
cd tmp
# add an empty file named tmp_file
touch tmp_file
# add an empty directory named another_tmp
mkdir another_tmp
# add an empty file to another_tmp directory
touch another_tmp/another_tmp_file