Adrian knows the host names of all the computers on his network. He wants to find the IP addresses of these computers. Which of the following TCP/IP utilities can he use to find the IP addresses of these computers remotely from his computer? Each correct answer represents a complete solution. Choose two.

A) Ipconfig

B) Tracert

C) Ping

D) Netstat


B) Tracert

C) Ping

Computer Science & Information Technology

You might also like to view...

The following code is an example of a __________ recursive algorithm.

``` int myRecursion(int array[], int first, int last, int val) { int num; if (first > last) return -1; num = (first + last)/2; if (array[num] == val) return num; if (array[num] < val) return myRecursion(array, num + 1, last, val); else return myRecursion(array, first, num - 1, val); } ``` a. Towers of Hanoi b. QuickSort c. binary search d. doubly linked list e. None of these

Computer Science & Information Technology

If you use Windows Defender, then you must be a member of Windows SpyNet

Indicate whether the statement is true or false

Computer Science & Information Technology

COGNITIVE ASSESSMENT Which recovery technique is more expensive, but provides recovery of damaged data in a matter of seconds?

A. rollforward B. rollbackward C. continuous backup D. instant restoration

Computer Science & Information Technology

Which outcome, when caused by an ethical lapse, could effectively be a death sentence for a career as an expert witness?

a.Disqualification b. Discrimination c. Conflicting out d. Identification

Computer Science & Information Technology