You are on page 1of 8

NDG Linux Unhatched Assessment Answers 100% - PremiumExam https://premiumexam.com/linux-unhatched/ndg-linux-unhatched-assess...

Home NE Linux Programming Languages About US

PremiumExam
Lead you to the highest IT Skills

IT E 7 CCNA Labs CCNA1 CCNA2 CCNA3 CCNA4 CyberOps CCNA Security

NDG Linux Unhatched Search

Assessment Answers 100%


Categories
Posted on November 12, 2018 by Admin
CCNA 1 v6.0 LAB Activites
Last Updated on November 12, 2018 CCNA Lab Exam
CyberEss v1 Packet Tracer Activity Source
NDG Linux Unhatched Files Answ ers
Assessment Answers 100% CyberEss v1 Student Lab Source Files
1. What does CLI stand for? Answ ers
Cybersecurity Student Lab Source Answ ers
Core Learning Interface ITE v6 Student Lab Source Files Answ ers
Command Learning Interface ITE v6 Student Packet Tracer Source Files
Core Line Interface Answ ers
Command Line Interface ITE v7 Student Lab Source Files Answ ers
2. Commands are case-sensitive. ITN v6 Student Lab Source Files Answ ers
True or False? NetEss v1 Packet Tracer Activity Source Files
Answ ers
True
NetEss v1 Student Lab Source Files Answ ers
False
Uncategorized
3. When entering a command, do
arguments or options typically
come first?
Options
Arguments
4. Which of the following is NOT a
correct way to combine options?
-l -r
-lr
-r l
-rl
5. Which command will print your
current location in the filesystem?
pcl

1 de 8 25-05-2020 10:27
NDG Linux Unhatched Assessment Answers 100% - PremiumExam https://premiumexam.com/linux-unhatched/ndg-linux-unhatched-assess...

pw d
pd
cd
6. Whichcommand will allow you to
change your current directory?
ls
cd
ch
chdir
7. Which
of the following is NOT an
example of an absolute path?
/
/home/sysadmin
Documents
8. Which
of the following is NOT an
example of a relative path?
Documents
/home
Documents/Work
home/sysadmin/Documents/School/Art
9. The~ (tilde) character is used to
represent:
A user’s home directory
Nothing, it doesn’t have a special meaning
The current directory
The directory above the current directory
10. The.. (double period) characters
are used to represent:
A user’s home directory
The current directory
Nothing, it doesn’t have a special
The directory above the current directory
11. The. (period) character is used to
represent:
The directory above the current directory
A user’s home directory
The current directory
Nothing, it doesn’t have a special meaning
12. The ls command without options

2 de 8 25-05-2020 10:27
NDG Linux Unhatched Assessment Answers 100% - PremiumExam https://premiumexam.com/linux-unhatched/ndg-linux-unhatched-assess...

or arguments…
…lists the contents of the current directory.
…prompts for a directory to list.
…lists the contents of a user’s home.
…generates an error as this command.
13. The first character in a long listing
ls -l indicates:
Hard Link Count
File Size
Permissions
File Type
14. Whichoption to the ls will sort the
output by file size?
-z
-r
-S
-s
15. Which of these commands will
create a new shell logged in as
the root user?
sudo
su
16. Which of the following sets has
the owner permissions
highlighted?
rw -rw -r–
rw -rw -r–
rw -rw -r–
rw -rw -r–
17. Which of the following sets has
the group permissions
highlighted?
rw -rw -r–
rw -rw -r–
rw -rw -r–
rw -rw -r–
18. Which of the following sets has
the other permissions
highlighted?

3 de 8 25-05-2020 10:27
NDG Linux Unhatched Assessment Answers 100% - PremiumExam https://premiumexam.com/linux-unhatched/ndg-linux-unhatched-assess...

rw -rw -r–
rw -rw -r–
rw -rw -r–
rw -rw -r–
19. Whichcommand will allow a user
to change the permissions of a
file?
perm
chow n
chmod
chperm
20. Which of the following permission
sets indicates the other owner
has only the read permission?
rw -r–rw x
rw xrw -r-x
r–r–r-x
rw -rw -r–
21. Which of the following commands
is used to change the ownership
of a file?
chow
chmod
chow n
chperm
22. Changing the user owner of a file
requires administrative access.
True or False?
True
False
23. Whichof the following commands
can be used to rename a file?
name
cp
rn
mv
24. Themv command requires at least
two arguments.
True or False?

4 de 8 25-05-2020 10:27
NDG Linux Unhatched Assessment Answers 100% - PremiumExam https://premiumexam.com/linux-unhatched/ndg-linux-unhatched-assess...

True
False
25. Which command can be used to
copy a file?
mv
rm
cy
cp
26. Thecp command requires at least
two arguments.
True or False?
True
False
27. Which command is used to copy
files at the bit level?
cp
dd
28. Therm command requires at least
two arguments.
True or False?
True
False
29. Which option to the rm command
will allow a user to delete
directories?
-l
-r
-d
-a
30. Which of the following commands
is used to filter text?
text
grep
dd
regex
31. Which of the following commands
will return only lines that begin
with test?

5 de 8 25-05-2020 10:27
NDG Linux Unhatched Assessment Answers 100% - PremiumExam https://premiumexam.com/linux-unhatched/ndg-linux-unhatched-assess...

grep ‘^test’ file.txt


grep ‘$test’ file.txt
grep ‘*test’ file.txt
grep ‘[test]’ file.txt
32. Which of the following commands
will return only lines that end with
test?
grep ‘$test’ file.txt
grep ‘test$’ file.txt
grep ‘test^’ file.txt
grep ‘^test’ file.txt
33. Which of the following lines would
be NOT returned by the grep
‘[^0-9]’ file.txt command?
I am 37 years old.
My favorite food is avocados.
3121991
Hello my name is Joe.
34. Which of the following lines would
be returned by the grep ‘b[oe]t’
file.txt command?
beet
bet
boet
boot
35. Which of the following commands
will NOT shutdown the system
immediately?
shutdow n
shutdow n now
shutdow n now ‘Goodbye World!’
shutdow n +0
36. Whichof the following commands
can be used to display network
configuration information?
netconfig
pw d
ifconfig
net
37. Which of the following commands

6 de 8 25-05-2020 10:27
NDG Linux Unhatched Assessment Answers 100% - PremiumExam https://premiumexam.com/linux-unhatched/ndg-linux-unhatched-assess...

will display every process?


ps –all
ps -e
ps
ps -a
38. The
ps command requires
administrative access.
True or False?
True
False
39. Which of the following commands
will update all packages?
apt-get upgrade
apt-get update
apt-get install
apt-get search
40. Which of the following will delete
all of a package’s files?
apt-get remove
apt-get delete
apt-get purge
apt-get trash
41. Which of the following commands
should be executed before
installing a package?
apt-get upgrade
apt-get update
apt-get install
apt-get search
42. Users
can update their own
passwords.
True or False?
True
False
43. Theroot user can change the
password of any user.
True or False?
True

7 de 8 25-05-2020 10:27
NDG Linux Unhatched Assessment Answers 100% - PremiumExam https://premiumexam.com/linux-unhatched/ndg-linux-unhatched-assess...

False
44. Which option can be used to view
status information about the
current user ’s password?
-i
-I
-S
-s

Home NE Linux Programming Languages About US


Copyright PREMIUMEXAM © 2020

8 de 8 25-05-2020 10:27

You might also like