____ keeps a record of the state of a connection between an internal computer and an external server and then makes decisions based on the connection as well as the rule base.

A. Stateful packet filtering
B. Stateless packet filtering
C. Hubs
D. Stateful hubs


Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following strftime() formatting codes denotes the month?

a. %X b. %M c. %S d. %B

Computer Science & Information Technology

How many times will this loop execute?

``` for ( int i = 0 ; i < 1 0 ; i++) System.out. println ( i ) ; ```

Computer Science & Information Technology

PROM is programmed during manufacturing.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Assuming a linked list of n nodes, the C++ statements

Node *cur = head; while (cur != null) { cout << curr->item << endl; cur = cur->next; } // end while require ______ assignment(s). a. n b. n – 1 c. n + 1 d. 1

Computer Science & Information Technology