Font size
WorksheetsLast linux
Total questions: 51
Worksheet time: 36mins
What is the Port Numbers for Simple Mail Transfer Protocol?
TCP 25
TCP 20
TCP 22
TCP 23
What is the Port Numbers for Hypertext Transfer Protocol?
TCP 25
TCP 80
TCP 53 and UDP 53
UDP 58
TCP 25 and UDP 50
What is the Port Numbers for Hypertext Transfer Protocol SECURE?
TCP 443
TCP 80
TCP 53 and UDP 53
UDP 58
TCP 25 and UDP 50
What is the Port Numbers for Post Office Protocol Version 3?
TCP 443
TCP 80
TCP 53 and UDP 53
TCP 110
TCP 25 and UDP 50
What is the Port Numbers for Remote Desktop Protocol?
TCP 443
TCP 143
TCP 53 and UDP 53
TCP 110
TCP 3389
What is the Port Numbers for Secure Shelll?
TCP 20 and TCP 21
TCP 20
TCP 22
TCP 23 and TCP 25
What utility would you use to view current connections and active sessions and ports on a computer?
nslookup
netstat
ping
ipconfig
Which one of these connectors would be used on a fiber link?
RJ45
LC
BNC
T568A
What port number is associated with FTP?
143
3389
443
21
A client's computer is connecting to a website. Which of the following commands will allow a technician to view the route/number of hops between the host and remote systems?
nbtstat
tracert
nslookup
netstat
Which of the following ports is used when accessing a website with SSL encryption?
22
80
110
443
RDP port #
389
3380
3993
3389
Which of the following protocols is used to secure communications between sender and receiver?
SIP
SNMP
SSL
SMTP
What is a SOHO network?
Small Output & Home Office
Several Offices & Hospital Office
Secretary Office & Health Office
Small Office or Home Office
A Linux command-line utility used for displaying and modifying network interface configuration settings is called:
ifconfig
net config
ipconfig
networksetup
Show all running processes (like Task Manager)
proc
show
top
process
Turn off the computer
quit
shutdown
shutdwn
off
Which of the following commands is NOT used for the management of files and directories?
ping
mkdir
touch
chmod
All commands, file names, directory names, and device names in Linux are case sensitive?
What is the core of a Linux Operating System?
Kernel
Shell
Command
GUI
What command moves to the root directory?
cd ~
cd \
cd /
cd ..
Which of the following commands allows you to move up one level in the Linux directory tree?
cd -
cd ..
cd /
cd .
This type of network is used to transmit data between Europe and North America.
WAN
LAN
WLAN
This network is connected without cables.
WAN
WLAN
LAN
This type of network is more secure
Internet
Intranet
This network device connects a LAN to the internet.
Hub
Switch
Bridge
Router
An account that is not intended for logging in interactively but for launching daemons and other supporting tasks is known as.....
daemon users
stduser
system account
nologin
What file contains a user's password, in hashed form, as well as the salt that was added to before hashing?
/etc/passwd
/etc/saltd
/etc/sonic
/etc/shadow
What command can be used to see who is currently logged on as well as when they logged on and from where?
who
quser
ps
w
What command removes a user account and removes their home directory?
remuser -r
deluser
userdel -r
acctrem -R
What group on Linux systems is typically given access within the sudoers file to run commands with administrative privileges?
admins
wheel
term
tty
When looking at the hashed string of a user's password, what does the very beginning, $6, represent?
Password is 6 characters long
No salt was added
Uses the Sha-512 algorithm
none of the above
If I run the following command, what will it do?
usermod -L tator
log out tator
change tator to a local account
lock out tator's account
allow you to move his local home directory
What range of UIDs are typically reserved for "regular" users of a Linux system?
1,000+
1-200
201-999
all of these are fair game
In the following entry, what does the x represent?
tator:x:1007:1010:Tator M. Salad:/home/tator:/bin/bash
Where the password used to be kept
Tator's default group
The last date tator's password was changed
That tator's account is locked out
Given the same output below, what is the /bin/bash representing?
tator:x:1007:1010:Tator M. Salad:/home/tator:/bin/bash
That tator is not allowed to login interactively
Tator's PATH environment variable
Location of Tator's password file
Tator's default shell
How many run levels are there in Linux?
3
5
6
7
What runlevel is single user mode?
1
2
3
5
What runlevel is used for multi-user graphical desktop mode?
1
3
5
7
What runlevel would be the default for a "headless" server with no GUI?
1
3
5
7
What would the command "init 0" do?
Reboot the machine
Shut the machine down
Start the GUI
Nothing, rulevel 0 doesn't exist
How many virtual consoles are accessible via TTYs?
3
6
8
10
What is the default bootloader for modern RedHat based distributions?
LILO
bootcmd
MBR
grub
What command can be used to display a linux machine'e host name?
hostname
uname -a
cat /etc/hosts
all the above
What is the right order of boot sequence?
Bios, MBR, GRUB, Kernel, INIT, Run Level
Bios, MBR, Kernel, INIT, Run Level, GRUB
Bios, Kernel, MBR, GRUB, INIT, Run Level
Bios, MBR, Kernel, GRUB, INIT, Run Level
Which of the following is Not a run level?
0
6
7
4
mkdir does what?
Deletes a directory
Creates a directory
Creates a file
renames a file
How do you save a file and exit?
:wq
:q!
:w
none of the above
What command creates and empty file?
(a)
what is the Linux command segment used to append data to the "s.txt" file ?
echo "Hey Ubuntu "
echo "Hey Ubuntu " > s.txt
ls >> s.txt
echo "Hello " > s.txt
