Answer:
foiydvoihivherqpiufhqeripufhwpjferifyhgeqwpufwhrfiouerhfpiwruhwriufhriughrpifuwrhfpouwerhfpir3gherqiughwrpijfheriughrgiuehgukjetnbgipuhiugtrihugtrhuigrtuhtrgihugtrihugtrihuggriughrgiuhgthgtehuighirihghtrihuetiughto[ughwer[igut4hg[owjg[toughjr[ough42ouhetgpou4t2gouhpoughogu4tpiu24hgpouthpgouwithjgop2tijgpotu4hgp4igjtoihj2p4oughroug2jt4poiughj2rpougrtihugtrjgtjipoijhuigtrfkopfgtrigtlrijgrijgtju9gt3i;gtju;lk3j3g00j835uj3ggy366j6jujep6ppjysbgtvrjgtroijpgtrijptgwiugtugtjteggteuegtiuogtgtutge5gtuogtuotguutytgju5t5iujugtteg5ut5gugt58ut54ut5grut5rd8u5trdu8jt5rd8ut5r8ut5tttfgig5ri;grgtrtgijpogte5ijopgtijogtri0tg45i0t45ij9gt54p98uhtrhuothjpiughtgutjhpwtoigj2rtg92tjhrwoipj[tigh9ughoghjergouehnpoutehgepogiujtr[ogihewupognetpoiuhqetoighqe[ou\epfouheq-g9uerhfhgprugqetughqe[ougjetiughnqetpoughnqet[ogujqreg[uijt
Answer:
In-Market audiences.
Explanation:
Steve intends for using Google display advertising to achieve new clients seeking to acquire identical items to himself. Form of in-market audience should Steve try to achieve his marketing objective.
In-market audiences seem to be a method of connecting with customers who regularly study or compare goods and facilities through Google Display Platform publishers and affiliate websites
Answer:
The command to create a compressed archive (archive1.tar.gz) is

Explanation:
The explanation for the above command is
The general command to create a compressed archive is
tar -czvf name-of-archive.tar.gz /path/to/directory-or-files
Here, the terms are as follows:
-c : Creates an archive
-z : Compress the archive with gzip.
-v : This is known as verbose. This is an optional command and it displays the progress on terminal command. Without this the progress is not displayed on terminal command.
-f : Allows to specify the file name of the archive.
Here, if we want to archive multiple files, we provide the command the names of multiple files or directories of the files also can be used.
So, the command 
creates a compressed archive - archive1.tar.gz of files test1, test2 and test3.