Which term is another name for a switching loop?

A. Routing loop
B. Bridging loop
C. ARPing loop
D. Broadcast loop


Answer: B

Computer Science & Information Technology

You might also like to view...

Suppose that wordListPtr points to an unsorted list of words. Using theoperations of the ADT list and the ADT sorted list, create a sorted list of these words.

What will be an ideal response?

Computer Science & Information Technology

Write a program that reads this information and summarizes the total sales by salesperson by product. All totals should be stored in the two-dimensional array sales. After each input, print the results in tabular format, with each of the columns repre- senting a particular salesperson and each of the rows representing a particular product. Cross-total each row to get the total sales of each product for last month; cross total each column to get the total sales by salesperson for last month. Your neat tabular printout should include these cross-totals to the right of the totaled rows and at the bottoms of the totaled columns. Use VBScript function FormatCurrency as part of your solution.

Use a two-dimensional array to solve the following problem. A company has four salespeople (with salesperson numbers 1 to 4) who sell five different products (with product numbers 1 to 5). Once a day, each salesperson passes in a slip for each different type of product sold. Each slip contains the salesperson number, product number and the total dollar value of that product sold that day.

Computer Science & Information Technology

To move a text box label, what action must you take?

A) Click the Tabular Layout in the Table group of the Arrange tab while both the label and text box controls are selected. B) Click the Tabular Layout in the Arrange group when the label is selected. C) Click the Tabular Layout in the Arrange group when the text box is selected. D) Click the Tabular Layout in the Arrange group of the Table group while the label and text box are selected.

Computer Science & Information Technology

What is the first line of the file created by the following code?

``` Dim query = From line In IO.File.ReadAllLines('UN.txt") Let data = line.Split(",&') Let country = data(0) Let population = 1000000 * CDbl(data(2)) Let area = CDbl(data(3)) Let density = population / area Select country & " , " & density.ToString('N1") IO.File.WriteAllLines("NewFile.txt", query) ``` (A) Afganistan,31800000/251772 (B) Afganistan,126.3 (C) Afganistan,126.3047519 (D) country,density

Computer Science & Information Technology