The options for the tar command will create an archive that is also gzipped while displaying all of the work in progress to the terminal screen is; tar -czvf
The tar command is a command in Linux that uses syntax to compress a group of files into an archive. The tar command is also used to extract, maintain, or modify tar archives.
Furthermore, Tar command archives, combine multiple files and/or directories together into a single file.
Now, the options in this syntax of tar command are;
Options:
-c : Creates archive
-x : Extracts the archive
-f : creates archive with given filename
-t : displays or lists files in archived file
-u : archives and adds to an existing archive file
-v : Displays verbose information
-A : Concatenates the archive files
-z : compresses the tar file using gzip
-j : compresses the tar file using bzip2
-W : Verifies an archive file
-r : updates or adds file or directory in already existing .tar file
Thus, the options for the tar command will create an archive that is also gzipped while displaying all of the work in progress to the terminal screen is; tar -czvf
Read more about Tar Command at; https://brainly.com/question/16411957
#SPJ1