What utility is used to verify that TCP/IP installed, bound to the NIC, configured correctly, and communicating with the network?

a. traceroute
b. ifconfig
c. ping
d. route


ANSWER: c

Computer Science & Information Technology

You might also like to view...

The Broken server setting is considered to be a security risk.

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

Computer Science & Information Technology

What does this program do?

``` // What does this program do? #include using namespace std; bool mystery3( const char *, const char * ); // prototype int main() { char string1[ 80 ], string2[ 80 ]; cout << "Enter two strings: "; cin >> string1 >> string2; cout << "The result is " << mystery3( string1, string2 ) << endl; } // end main // What does this function do? bool mystery3( const char *s1, const char *s2 ) { for ( ; *s1 != '\0' && *s2 != '\0'; s1++, s2++ ) if ( *s1 != *s2 ) return false; return true; } // end function mystery3 ```

Computer Science & Information Technology

The ____ operator is always evaluated before the OR operator.

A. Assignment B. AND C. Conditional D. Logical

Computer Science & Information Technology

DoS attacks can threaten mobile networks.

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

Computer Science & Information Technology