Pregunta 1
Pregunta
1. One of the jobs of the kernel is to:
Respuesta
-
• Manage the system’s resources
-
• Turn source code into machine code
-
• Load the operating system after the computer is turned on
-
• Transfer mail from one machine to another
Pregunta 2
Pregunta 3
Pregunta
3. Linux is written in:
Respuesta
-
• C
-
• .NET
-
• C++
-
• Java
-
• Perl
Pregunta 4
Pregunta
4. Source code refers to:
Respuesta
-
• The version of a program that the computer runs on the CPU
-
• The license that dictates how you may use and share the software
-
• The interface that software uses to talk to the kernel
-
• A human readable version of computer software
Pregunta 5
Pregunta
5. What is the standard option to provide a command line program to view its documentation?
Respuesta
-
• –info
-
• –doc
-
• –help
-
• -h
Pregunta 6
Pregunta
6. The command man -k is the same as the command apropos.
True or False?
Pregunta 7
Pregunta
7. The whatis command is the same as man -w.
Pregunta 8
Pregunta
8. The directory where additional documentation for software packages most likely can be found is:
Respuesta
-
• /var/lib/doc
-
• /usr/software/doc
-
• /usr/share/doc
-
• /var/share/doc
Pregunta 9
Pregunta
9. Hidden files are files that begin with what character?
Respuesta
-
• A plus (+)
-
• A dash (-)
-
• A period (.)
-
• An asterisk (*)
Pregunta 10
Pregunta
10. What option for the ls command will display all files, including hidden files?
Pregunta 11
Pregunta
11. The top-level directory on a Linux system is represented as:
Pregunta 12
Pregunta
12. Is the following path absolute or relative?
/etc/ppp
Pregunta 13
Pregunta
13. Is the following path absolute or relative?
sysadmin/Documents
Pregunta 14
Pregunta
14. Compression on a file works by:
Respuesta
-
• Removing the high order bit from each byte
-
• Consolidating multiple files into one
-
• Removing redundant information
-
• Storing most of the data on removable media and just leaving a pointer
-
• Eliminating gaps within the file
Pregunta 15
Pregunta
15. In general, for which of the following would you want to use lossless compression?
Respuesta
-
• An mp3 audio file
-
• A movie
-
• A log file
-
• A JPEG image
-
• An encrypted email
Pregunta 16
Pregunta
16. Lossy compression:
(choose three)
Respuesta
-
• Is often used with documents
-
• Decompresses to an identical version as the original
-
• Sacrifices some quality
-
• Usually results better compression than lossless
-
• Is often used with images
Pregunta 17
Pregunta
17. You type gzip myfile.tar. What happens?
(choose two)
Respuesta
-
• myfile.tar.gz holds a compressed version of myfile.tar
-
• An error; you forgot to pass the name of the output file
-
• An error; you forgot to specify the file with –f
-
• myfile.tar is unarchived into the current directory
-
• myfile.tar is removed
Pregunta 18
Pregunta
18. Error messages generated by commands are sent where by default?
Respuesta
-
• STDIN
-
• Log files
-
• STDERR
-
• STDOUT
Pregunta 19
Pregunta
19. A successful command will print output to STDOUT.
True or False?
Pregunta 20
Pregunta
20. Which of the following commands will direct error messages to the file, error.log?
(choose one)
Respuesta
-
• ls /root > error.log
-
• ls /root >> error.log
-
• ls /root 2> error.log
-
• ls /root $> error.log