Loading questions...
Updated
When the command echo $? outputs 1, which of the following statements are true?
SIMULATION -
What word is missing from the following SQL statement? insert into tablename ________(909, 'text');
(Please specify the missing word using lower-case letters only.)
Which command makes the shell variable named VARIABLE visible to subshells?
SIMULATION -
By default, the contents of which directory will be copied to a new user's home directory when the account is created by passing the -m option to the useradd command? (Specify the full path to the directory.)
SIMULATION -
What word is missing from the following SQL statement?
__________ count(*) from tablename;
(Please specify the missing word using lower-case letters only.)
Which of the following files, when existing, affect the behavior of the Bash shell? (Choose TWO correct answers.)
Which of the following commands puts the output of the command date into the shell variable mydate?
Which of the following configuration files should be modified to globally set shell variables for all users?
Which of the following commands are used to manage the environment and shell variables within a shell process? (Choose TWO correct answers.)
What is the purpose of the sticky keys feature in X?
Which of the following are tasks handled by a display manager like XDM or KDM? (Choose TWO correct answers.)
On a machine running several X servers, how are the different instances of the X11 server identified?
What is the purpose of the xhost program?
What of the following statements is true regarding a display manager?
How is a display manager started?
SIMULATION -
What is the default name of the configuration file for the Xorg X11 server? (Specify the file name only without any path.)
Which of the following commands shows the current color depth of the X Server?
For accessibility assistance, which of the following programs is an on-screen keyboard?
Create a free account to unlock all questions for this exam.
Log In / Sign UpWhich of the following commands creates a function in Bash that outputs the sum of two numbers?
What output will the following command sequence produce?
echo '1 2 3 4 5 6' | while read a b c; do echo result: $c $b $a; done