Communication over the copper wire used in DSL technologies is ____.

A. half-duplex
B. simplex
C. full-duplex
D. reflex


Answer: B

Computer Science & Information Technology

You might also like to view...

Add a method getListForQuery(String query) to the DatabaseManager class that will return a List of all the columns in the first row returned in the result set for the passed query. You can find out how many columns have been returned by getting a ResultSetMetaData object from the ResultSet object using the method getMetaData() method. You can then ask the ResultSetMetaData object for the number of columns by using the method getColumnCount().

What will be an ideal response?

Computer Science & Information Technology

Create an applet Nim that will allow two players to play the game of nim. Initially, there are three rows of coins. During his or her turn, a player can take as many coins as desired from a single row. The rows have 3, 5, and 7 coins each. The last person to take a coin loses. Use buttons with icons for the coins. As a player clicks the button, it will become invisible. There should be a Turn over button that is visible only when a player has taken at least one coin. Use a label to let the players know whose turn it is and who has won the game.

This application makes use of icons and visibility. One interesting feature of the solution is that it uses a non-regular two-dimensional array of buttons. Each row in the array corresponds to a row of coins in the game. You will need to have a state variable that records the row that the first coin in a turn was removed from. Subsequent removals must be checked against the row. Determining which coin button was pressed is an interesting challenge. One way to accomplish this is to set the label for each of the coin buttons with its location in the array; Example: “Coin 1,3”. You will then need to parse the action command to determine what to do. This solution takes a slightly different and less efficient approach. It scans the array of buttons and checks to see if any of them is the source (uses the getSource method). This gives it the location of the button. Other than that, it is pretty straightforward.

Computer Science & Information Technology

A(n) ________ is a database object that you create and use independently of other controls or objects

A) stand-alone macro B) procedure macro C) embedded macro D) command macro

Computer Science & Information Technology

When configuring a trunk between a router and a switch, which command must be configured on the switch to ensure that the trunk comes up?

A) switchport mode dynamic desirable B) switchport mode dynamic auto C) switchport mode access D) switchport mode trunk

Computer Science & Information Technology