What are some of the more common network performance metrics that are utilized?

What will be an ideal response?


ANSWER: Some of the more common performance metrics are as follows:
* utilization-This metric refers to the actual throughput used as a percentage of available bandwidth. No network should operate at maximum capacity. Identify patterns of utilization and ensure that available bandwidth accounts for utilization spikes.
* error rate-Bits can be damaged in transit due to EMI or other interference. The calculated percentage of how often this occurs is the error rate.
* packet drops-Packets that are damaged beyond use, arrive after their expiration, or are not allowed through an interface are dropped. Packet drops result in delayed network communications while devices wait for responses or have to resend transmissions. Knowing what's normal for your network will help you identify problems when packet drop rates vary.
* jitter-All packets experience some latency. When successive packets experience varying amounts of latency, resulting in their arriving out of order, the user experience is degraded. This is called jitter, a problem that can be addressed through traffic management techniques.

Computer Science & Information Technology

You might also like to view...

What does the following section of code accomplish?

```Dim intCount as Integer Dim intXXXX as Integer = intNumbers(0) For intCount = 1 to (inNumbers.Length - 1) If intNumbers(intCount) < intXXXX Then intXXXX = intNumbers(intCount) End If Next intCount ``` a. Finds the first element of the array intNumbers b. Finds the last element of the array intNumbers c. Finds the Highest value in the array intNumbers d. Finds the Lowest value in the array intNumbers

Computer Science & Information Technology

____ are used to check for the presence or absence of something.

A. Check boxes B. Option boxes C. Group boxes D. Text boxes

Computer Science & Information Technology

Headers and footers can contain ________, where file names and the current date can be shown

Fill in the blank(s) with correct word

Computer Science & Information Technology

Critical Thinking Questions Case 8-2 ? Siobhan is going to create a dialog box for a new application and while she has been a user of dialog boxes for a long time, she has never before taken the time to learn the names of the actual dialog box features aligned with their functions. ?If Siobhan has a dialog box option that is either on or off, which of the following is she most likely to use?

A. ?Text box B. ?List box C. ?Drop-down list box D. ?Toggle button

Computer Science & Information Technology