Which of the following statements best describes a DMZ?

A. It allows users to establish a secure connection over a public network.
B. It filters incoming and outgoing traffics based on a set of rules.
C. It is a specially configured network that sits between the public and the internal network.
D. It translates the internal private IP addresses to a public IP address.


Answer: C
Explanation: A DMZ is a specially configured network that sits between the Internet and the internal network. It typically contains the company web server and firewalls to additionally filter incoming and outgoing traffic.

Computer Science & Information Technology

You might also like to view...

Suppose you have a class whose objects are very, very large. Briefly, describe the advantages and drawbacks of call-by-value and call-by-reference for large objects. Describe a parameter passing mechanism that will allow the safety of call-by-value and the efficiency of call-by-reference.

What will be an ideal response?

Computer Science & Information Technology

What is y displayed?

``` public class Test { public static void main(String[] args) { int x = 1; int y = x + x++; System.out.println("y is " + y); } } ``` a. y is 1. b. y is 2. c. y is 3. d. y is 4.

Computer Science & Information Technology

The center of a slide is ____ on both the vertical and the horizontal rulers.

A. 0.00 B. 0.50 C. 1.00 D. 1.50

Computer Science & Information Technology

Match the following keyboard strokes while in Outline view with their function:

I. Tab II. Shift+Tab III. Enter IV. Delete V. Shift+Tab twice A. creates a new slide or bullet at the same level B. promotes an item C. removes highlighted content D. demotes an item E. decreases the indent two levels

Computer Science & Information Technology