A network technician has received comments from several users that cannot reach a particular website. Which of the following commands would provide the BEST information about the path taken across the network to this website?

A. Ping
B. Netstat
C. telnet
D. tracert


Answer: D. tracert

Computer Science & Information Technology

You might also like to view...

Which of the following statements is preferred to create a string "Welcome to Java"?

a. String s = "Welcome to Java"; b. String s = new String("Welcome to Java"); c. String s; s = "Welcome to Java"; d. String s; s = new String("Welcome to Java");

Computer Science & Information Technology

If you want exact measurements for a text box, you can select the text box with the Selection tool and entered the width and height in the W and H text boxes on the Control panel.

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

Computer Science & Information Technology

Create a class that will bundle together several static methods for tax computations. This class should not have a constructor. Its attributes are

• basicRate—the basic tax rate as a static double variable that starts at 4 percent • luxuryRate—the luxury tax rate as a static double variable that starts at 10 percent Its methods are • computeCostBasic(price)—a static method that returns the given price plus the basic tax, rounded to the nearest penny. • computeCostLuxury(price)—a static method that returns the given price plus the luxury tax, rounded to the nearest penny. • changeBasicRateTo(newRate)—a static method that changes the basic tax rate. • changeLuxuryRateTo(newRate)—a static method that changes the luxury tax rate. • roundToNearestPenny(price)—a private static method that returns the given price rounded to the nearest penny. For example, if the price is 12.567, the method will return 12.57.

Computer Science & Information Technology

Match the following descriptions to their correct term:

I. a note about the content of a document A. markup balloon II. displays comments and changes made to a document B. Reviewing Pane III. inserts revision marks and shows additions, deletions, and formatting changes C. Revision marks IV. colored circles that display in the margins D. Track Changes V. indicates where text is added, deleted, or formatting changed in Track Changes E. comment

Computer Science & Information Technology