Pregunta 1
Pregunta
Select all the applications that provide access to the Command Line Interface (CLI)?
Respuesta
-
opera
-
Virtual Terminal
-
Terminal
-
firefox
Pregunta 2
Pregunta
Which environment variable contains a list of directories that is searched for commands to execute?
Pregunta 3
Pregunta
Select the command that can report the location of a command:
Pregunta 4
Pregunta
A pair of single quotes ( ‘ ) will prevent the shell from interpreting any metacharacter.
Pregunta 5
Pregunta
A pair of double quotes ( ” ) will prevent the shell from interpreting any metacharacter.
Pregunta 6
Pregunta
Using a pair of back quotes ( ` ) will cause a shell to execute the back-quoted text as a command and substitute the output back into the original command.
Pregunta 7
Pregunta
Which of the following are glob characters?
Pregunta 8
Pregunta
The semicolon “;” can be used to separate multiple commands to be executed in order.
Pregunta 9
Pregunta
The double ampersand characters ( && ) are used to separate commands to be executed conditionally, where if the command to the left of the ampersands fails, then the command to the right of the ampersands will be executed.
Pregunta 10
Pregunta
To be able to output messages to the screen, use the [blank_start]echo[blank_end] command:
Pregunta 11
Pregunta
The [blank_start]history[blank_end] command will print a list of the commands that you’ve previously executed.
Pregunta 12
Pregunta
To execute the same command as previously executed five commands ago, you would type:
Pregunta 13
Pregunta
The shell program interprets the commands you type into the terminal, into instructions that the Linux operating system can execute.
Pregunta 14
Pregunta
The acronym CLI stands for:
Pregunta 15
Pregunta
Traditional UNIX command options used a single dash, like -a; [blank_start]GNU[blank_end] command options use two dashes like –all.
Pregunta 16
Pregunta
The acronym GNU stands for:
Respuesta
-
Gnu’s Not Unix
-
Good News Unix
-
Gnu’s Nearly Unix
-
Go Next Unit
Pregunta 17
Pregunta
The main purpose of using glob characters is to be able to provide a command a list of filenames.
Pregunta 18
Pregunta
What one character treats the character that follows it as if it was surrounded by single quotes?