The default gateway specifies which of the following?

a. Where the data is to be sent when the source address for the data is not in the same subnet or is unknown
b. Where the data is to be sent when the destination address for the data is in the same subnet or is unknown
c. Where the data is to be sent when the destination address for the data is not in the same subnet or is unknown
d. Where the data is to be routed when both the source and the destination addresses for the data are not in the same subnet or are unknown
e. None of these answers is correct.


c. Where the data is to be sent when the destination address for the data is not in the same subnet or is unknown

Computer Science & Information Technology

You might also like to view...

The device called a _____ can be used  for precise input and manipulation of small objects on the screen.

A. pinpoint B. pen C. stylus D. pointer

Computer Science & Information Technology

IKE key determination employs __________ to ensure against replay attacks.

A) cookies B) groups C) flags D) nonces

Computer Science & Information Technology

Refering to the accompanying figure, which of the following search options should be selected if you are looking for all search string matches in any part of the word?

A. Match case B. Find whole words only C. Use wildcards D. none of the above

Computer Science & Information Technology

The following program purports to sum all entered int values that are greater than 5. It compiles without any error message, and it executes without error message, but nevertheless is wrong. Name all the errors.

``` // Display the sum of all entered int values // greater than 5 #include int main() { using namespace std; int x, sum; while (x < 10) { cin >> x; if (x > 5); sum = sum +x; } cout << “The sum is values > 5 is “ << sum << endl; } ``` a) The while header needs a semicolon at the end of its line. b) The semicolon at the end of the if statement is an error that the compiler should catch. c) The semicolon at the end of the if statement causes all entered values to be summed. d) The sum variable is not initialized, so the output value is most likely garbage.

Computer Science & Information Technology