Which of the following terms is MOST likely associated with a modem connection?

A. RJ-11
B. 802.11g
C. RJ-45
D. IEEE 1394


Answer: A. RJ-11

Computer Science & Information Technology

You might also like to view...

A ____ is a freestanding, self-service structure equipped with computer hardware and software and used to provide information or reference materials to the public.

A. kiosk B. station C. frame D. network

Computer Science & Information Technology

The following code should draw a blue, filled, circle of diameter 4 that corresponds to the movement of the mouse. Find the error(s) in the following code:

``` 1 public void paintComponent( Graphics g ) 2 { 3 if ( currentPoint != null ) 4 { 5 g.fillOval( Color.BLUE, currentPoint.y, currentPoint.x, 4, 5 ); 6 } 7 8 } // end method paintComponent ```

Computer Science & Information Technology

Write a program that allows the user to draw a rectangle by dragging the mouse on a Can- vas. The drawing should begin when the user holds the left-mouse button down. With this button held down, the user should be able to resize the rectangle. The drawing ends when the user releases the left button. When the user next clicks on the Canvas, the rectangle should be deleted.

What will be an ideal response?

Computer Science & Information Technology

When you click a folder on the Dock, it opens in a separate window.

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

Computer Science & Information Technology