?Match each correct item with the statement below.?

A. ?A variable that is altered by loop constructs to ensure that commands are not executed indefinitely.
B. ?A special construct used in a shell script to alter the flow of the program based on the outcome of a command or contents of a variable. Common decision constructs include if, case, &&, and ||.
C. ?The variables that store information commonly accessed by the system or programs executing on the system; together, these variables form the user environment.
D. ?The numeric labels used to define command input and command output.
E. ?The first line in a shell script, which defines the shell that will be used to interpret the commands in the script file.
F. ?A special construct used in a shell script to execute commands repetitively. Common decision constructs include for and while.
G. ?The process of changing the default locations of Standard Input, Standard Output, and Standard Error.
H. ?A file descriptor that represents any error messages generated by a command.
I. ?A file descriptor that represents information input to a command during execution.
J. ?A file descriptor that represents the desired output from a command.


A. ?counter variable
B. decision construct?
C. ?environment variables
D. ?file descriptors
E. ?hashpling
F. loop construct?
G. ?redirection
H. Standard Error (stderr)?
I. ?Standard Input (stdin)
J. Standard Output (stdout)

Computer Science & Information Technology

You might also like to view...

Assuming Employee is an already declared structure, the function definition calcNet(Employee *pt) declares the pt parameter as a(n) ____ to a structure of type Employee.

a. pointer b. class c. object d. instance

Computer Science & Information Technology

A ____ is a database object that extracts data from one or more tables in a database according to criteria that you set.

A. table B. query C. filter D. mirror

Computer Science & Information Technology

For removing directories, the _______________ command works in both Windows and Linux, but _______________ works only in Windows.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Given the following code, what is printed?      int x;      x = 4;      printf("%d %d", x, x++);

A. 3 4 B. 4 4 C. 4 5 D. 5 4 E. undeterminable

Computer Science & Information Technology