Pada kesempatan kali ini ane akan share ilmu tentang
ujian Cisco,ngomong-ngomong nilai nya lumayan sempurna seh namun biasanya ada beberapa soal yang beda neh...jadi jangan berkecil hati ya teman-teman blogger semua. Oke kita langsung saja menuju ke TKP saja ya
CHAPTER 1
CORRECT - See section 1.3.1
One of the jobs of the kernel is to:
Manage the systems resources
CORRECT - See section 1.3
Unix is
An operating system
A trademark
CORRECT - See section 1.3.5
The Linux platform that runs on mobile phones is called:
Android
CORRECT - See section 1.3.1
The bootloaders job is to:
Load the kernel after the computer is powered on
CORRECT - See section 1.3
Unix was originally invented at:
AT&T Bell Labs
CORRECT - See section 1.3.3
A license where you dont have access to the source code is called:
Closed source
CORRECT - See section 1.4
The most important consideration when choosing an operating system is:
What the computer will do
CORRECT - See section 1.4.1
A release cycle:
Describes how often updates to the software come out
CORRECT - See section 1.4.1
A maintenance cycle:
Describes how long a version of software will be supported
CORRECT - See section 1.4.1
Software is backward compatible if:
It still supports old file formats or applications
CHAPTER 2
CORRECT - See section 3.3
A server is likely to be running in graphical mode.
False
CORRECT - See section 3.4
In graphical mode, you can get to a shell by running which applications?
terminal
xterm
CORRECT - See section 3.5
Virtualization means:
A single host can be split up into multiple guests
CORRECT - See section 3.5
In virtualization, what are the host and guest?
The host is the machine that runs the virtual machines
A guest is a virtual machine
CORRECT - See section 3.5
Which of the following are traits of cloud computing?
The resources are virtualized
You pay for what you use
CORRECT - See section 3.6
If you wanted to write a report that was to be printed, you would probably use:
LibreOffice
CORRECT - See section 3.7
If you want to store logins and passwords for different websites in a secure manner, you could use:
KeePassX
CORRECT - See section 3.8
Social network like buttons can track your activity across the Internet.
True
CORRECT - See section 3.7
Which of the following are properties of a strong password?
At least 10 characters long
A mix of upper and lower case
Includes symbols
CORRECT - See section 3.7
What can be done to prevent remote people from running programs on your computer?
Turn on a firewall
use strong passwords on all user accounts
CHAPTER 3
CORRECT - See section 3.3
A server is likely to be running in graphical mode.
False
CORRECT - See section 3.4
In graphical mode, you can get to a shell by running which applications?
terminal
xterm
CORRECT - See section 3.5
Virtualization means:
A single host can be split up into multiple guests
CORRECT - See section 3.5
In virtualization, what are the host and guest?
The host is the machine that runs the virtual machines
A guest is a virtual machine
CORRECT - See section 3.5
Which of the following are traits of cloud computing?
The resources are virtualized
You pay for what you use
CORRECT - See section 3.6
If you wanted to write a report that was to be printed, you would probably use:
LibreOffice
CORRECT - See section 3.7
If you want to store logins and passwords for different websites in a secure manner, you could use:
KeePassX
CORRECT - See section 3.8
Social network like buttons can track your activity across the Internet.
True
CORRECT - See section 3.7
Which of the following are properties of a strong password?
At least 10 characters long
A mix of upper and lower case
Includes symbols
CORRECT - See section 3.7
What can be done to prevent remote people from running programs on your computer?
Turn on a firewall
use strong passwords on all user accounts
CHAPTER 4
CORRECT - See section 4.4
Select all the applications that provide access to the Command Line Interface (CLI)?
Terminal window
Virtual Terminal
CORRECT - See section 4.7
Which environment variable contains a list of directories that is searched for commands to execute?
PATH
CORRECT - See section 4.8
Select from the following commands those which can report the location of a command:
which
CORRECT - See section 4.11.4
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.
True
CORRECT - See section 4.10
Which of the following are glob characters?
The asterisk "*"
The question mark "?"
The square brackets "[" and "]"
CORRECT - See section 4.12.1
The semicolon ";" can be used to separate multiple commands to be executed in order.
True
CORRECT - See section 4.12.2
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.
False
CORRECT - See section 4.5
The _______ command will print a list of the commands that you've previously executed.
history
CORRECT - See section 4.4.2
The shell program is what interprets the commands you type into the terminal into instructions that the Linux Operating System can execute.
True
CORRECT - See section 4.3
The acronym CLI stands for:
Command Line Interface
CHAPTER 5
CORRECT - See section 5.3.2
Which two pager commands are used by the man command to control movement within the document?
more
less
CORRECT - See section 5.3.6
Commands typically executed by a user are covered in what section of the manual?
1
CORRECT - See section 5.4
The statement that describes the difference between a man page and an info page is:
The info page is like a guide; a man page is a more concise reference.
CORRECT - See section 5.3.4
If you are reading the synopsis of a command from a man page, then items in square brackets are:
Optional
CORRECT - See section 5.3.3
The following sections commonly appear on a man page:
NAME
DESCRIPTION
SYNOPSIS
CORRECT - See section 5.3.6
Section 5 of the manual pages covers:
File Formats
CORRECT - See section 5.3.5
To start searching a man page, the first key you press is:
/
CORRECT - See section 5.3.2
In order to exit viewing a man page, press:
q
CORRECT - See section 5.4.2
To exit the info command press:
q
CORRECT - See section 5.3.4
When interpreting the SYNOPSIS of a command found on a man page, the "|" means:
The items it separates cannot be used together
CHAPTER 6
CORRECT - See section 6.4.2
Hidden files are files that begin with what character?
A period (.)
CORRECT - See section 6.3.2
The tilde (~) is used to represent:
A user's home directory.
CORRECT - See section 6.3.4
The cd command by itself will take you to what directory?
Your home directory
CORRECT - See section 6.3.5
The double dot (..) can be used to represent the directory...
...above the current directory
CORRECT - See section 6.4.1
Which of the following commands will prevent any aliased options to the ls command?
\ls
CORRECT - See section 6.4.5
The command ls -S will sort files:
By size, largest to smallest.
CORRECT - See section 6.5.2
Which option(s) can be used to prevent cp from overwriting an existing file?
-i
-n
CORRECT - See section 6.10
The command rm -r will...
remove a directory along with any files or subdirectories.
CORRECT - See section 6.9
Which option can be used with the rm command to prompt before deleting?
-i
CORRECT - See section 6.7.1
Which of the following commands can be used to rename a file?
mv
CHAPTER 7
CORRECT - See section 7.1
Compression on a file works by:
Removing redundant information
CORRECT - See section 7.3
Lossy compression:
Usually results better compression than lossless
Is often used with images
Sacrifices some quality
CORRECT - See section 7.4
Which command would you use to archive the Documents directory and compress it with bzip2 compression?
tar cjf documents.tbz Documents
CORRECT - See section 7.4
Which flag would you pass to tar in order to have it make a new archive?
-c
CORRECT - See section 7.4
In the command tar cvjf foo.tbz a b c, what are a, b, and c?
file names to be added to the archive
CORRECT - See section 7.5
Which of the following commands will create a zipfile with the contents of your Documents directory?
zip -r mydocs.zip Documents
CORRECT - See section 7.5
Given a file called documents.zip, how can you see whats in it without extracting the files?
unzip l documents.zip
CORRECT - See section 7.3
Which of the following commands can be used to compress a file?
gzip
bunzip2
zip
CORRECT - See section 7.4
In the command tar czf foo.tar.gz bar, what is the purpose of the f flag?
Tells tar to write to the file that follows the flag
CORRECT - See section 7.4
Which two commands do the same thing?
tar c foo | gzip > foo.tar.gz
tar czf foo.tar.gz foo
CHAPTER 8
CORRECT - See section 8.4.3
Error messages generated by commands are sent where by default?
STDERR
CORRECT - See section 8.4.5
Which of the following commands will direct error messages to the file error.log?
ls /root 2> error.log
ls /root &> error.log
CORRECT - See section 8.3
A pipe allows you to...
...send the output of one command to another
WRONG - See section 8.8
Which command(s) can be used to sort the lines of list.file alphabetically and display it on the screen?
cat list.file | sort
CORRECT - See section 8.7
Which option of the head command will display only the first five lines of a file?
-n 5
CORRECT - See section 8.11
The grep command...
...will display all the lines in a file containing the specified Regular Expression.
CORRECT - See section 8.12.4
Which of the following commands will display only lines that begin with start?
grep ^start file.txt
CORRECT - See section 8.10
Which option for the cut command is used to specify the field?
-f
CORRECT - See section 8.3
Which command can be used to print line numbers?
nl
CORRECT - See section 8.4.4
The command echo "text" > file.txt will not overwrite file.txt if it already exists.
False
Sekian dulu jawaban Cisco nya dari exam 1-8 jika anda ingin melanjutkan ke exam berikutnya dengan syarat anda telah menyelesaikan exam 1-8 oke..jika ada kekurangan bisa komen di bwah.
keywords
cisco answers
Netacad.com
exam cisco
answer exam cisco