A layer 3 device that determines the best way for a packet to be forwarded to its destination.
What is a Router?
100
A set of rules or procedures for transmitting data between electronic devices.
What is a protocol?
100
Is needed to close out a SQL query?
What is a ;?
100
This document is needed to transport classified material to and from sites.
What is a courier card?
100
Used to check to see if and ACL is properly applied.
What is show run?
200
A multi-port network bridge that uses hardware addresses to process and forward data at the data link layer (layer 2) of the OSI model.
What is a Switch?
200
A way to identify a specific protocol to which an Internet or other network message is to be forwarded when it arrives at a server.
What is a port number?
200
The process of BlueScope collecting data and MySQL being used to view data is known as
What is the relationship between MySQL and BlueScope?
200
This document that provides accountability of NBT equipment and must be signed by the SSO
What is the Letter of Transmittal (LOT)?
200
Command to run Nipper
What is nipper --ios-router --input=file.txt --output=file.html
300
____ password encryption uses the Cisco-defined encryption algorithm which is known to be weak throughout the commercial security community.
What is Type 7?
300
The standard Internet communications protocol that allow digital computers to communicate over long distances
What is TCP/IP?
300
____ clause returns all rows from the left table (table1), with the matching rows in the right table (table2).
What is the Left Join?
300
This document gives NBT member the approval to conduct NBT assessments.
What is the NAO (Navy Authorizing Official) Letter?
300
How to write statement that will look for users with the name of admin, blank passwords, and email addresses that end in @gmail.com. in MySQL.
What is SELECT * from Users where username = 'admin' and password = '' and email like '%@gmail.com%';
400
This encryption is used with the enable secret command.
What is MD5/Type 5
400
____ is the port number for the ____ protocol that automatically assigns an IP address to a device on a network vice having to manually assign a static IP.
What is Port 68/DHCP?
400
____ selects all rows from both tables as long as there is a match between the columns in both tables.
What is the inner-join command?
400
These documents must be completed and turned into site to gain access to site's systems and networks.
What are the SAAR-N/PAA?
400
This algorithm can be used to explain the Inner Join command.
What is SELECT T1.C1,T2.* FROM T2 INNER JOIN T1 ON T2.C2=T1.C2;?
500
If Telnet is seen enabled in the summary section of Nipper, but seen disabled on VTY lines 0-4, this is considered
What is a false-positive?
500
Port number for Network Time Protocol.
What is Port 123?
500
____ utility performs logical backups, producing a set of SQL statements that can be executed to reproduce the original database object definitions and table data.
What is the MySQL dump?
500
What device must the site be informed about that will cause a temporary network outage.
What is a Network Tap?
500
Example of the ______ function that returns the number of distinct values of the specified column:
What is SELECT COUNT(DISTINCT column_name) FROM table_name;