A computer's DNS has bad cach records.which tools can be used to clear the DNS record.

A. netstat
B. ipconfig
C. nslookup
D. tracert

Answer: B. ipconfig

Computer Science & Information Technology

You might also like to view...

____ functionality is almost always put in the code that way for a malicious reason.

A. Hidden B. Direct C. Required D. Observable

Computer Science & Information Technology

int x, y;if (x < 4)    y = 2;else if (x > 4){    if (x > 7)        y = 4;    else        y = 6;}else    y = 8;Based on the code above, what is the value of y if x = 9?

A. 2 B. 4 C. 6 D. 8

Computer Science & Information Technology