What entry is made at the command prompt in UNIX/Linux to display DNS server information?

A. ipconfig /all
B. ipconfig /displaydns
C. ping /dns
D. cat /etc/resolv.conf


Answer: D

Computer Science & Information Technology

You might also like to view...

Here is some code. There are only two outputs, one a message from the unnamed namespace the other a message from the Savitch namespace. Tell which line generates which message.

``` #include using namespace std; namespace { void message(); } namespace Savitch { void message(); } int main() { { message(); //a) Savitch::message(); //b) using Savitch::message; message(); //c) } message(); //d) return 0; } namespace Savitch { void message() { cout << "Message from NS Savitch\n"; } } namespace { void message() { cout <<"Message from unnamed NS\n"; } } ``` 1) List the letters of the lines that give the message from the unnamed namespace: ____________________ 2) List the letters of the lines that give the message from the Savitch namespace: ____________________

Computer Science & Information Technology

The CHKDSK program performs a quick scan on a computer's hard disk drive

Indicate whether the statement is true or false

Computer Science & Information Technology

Pages created using a CSS Layout have an associated ____________________ file, as shown in the accompanying figure.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Podcasts follow the ____________________ specification for RSS feeds.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology