tar - extract to specific directory

Question:
Extract the contents of /home/bob/archive.tar.gz to the /tmp directory.

Answer:

tar xf /home/bob/archive.tar.gz -C /tmp
Long version:
tar --extract --file /home/bob/archive.tar.gz --directory /tmp/