Every program has a working, or current directory, which is
the base for relative pathnames
accessed from that program. For example, if the working directory of a text
editor program
is /home/ugrad/myname/docs, then a relative pathname mydoc.txt
is interpreted as: /home/ugrad/myname/docs/mydoc.txt
Don't forget about the .. shorthand; it always stands for the
parent directory of the current (or last-named, if it occurs in a long
pathname) directory. In the previous example, a file
/home/ugrad/myname/hello.m can be referenced as ../hello.m
The working directory of a program is usually assigned to be the current
working directory of the shell
from which the program was started.
Further details...
World Wide Web
The World Wide Web, or WWW for short, is a massive collection of
hypertext documents, linked together over the Internet.
Further details...