The part of the IP address shared by all the computers on a network segment is called the __________________.
Fill in the blank(s) with the appropriate word(s).
Network ID
correct
You might also like to view...
A __________ allows the computer to communicate over standard telephone lines.
a. cable modem b. buffer c. coupler d. modem
Enhance the memo saver GUI in Listing 15.1 in all of the following ways:
• Add another menu called Scroll Bars that offers the user three choices: Never, Always, and As Needed. When the user makes a choice, the scroll bars are displayed according to the choice. • When the user clicks the close-window button, another window pops up and asks the user whether to end the program, as was done in Listing 15.10. This program is best done by adding one feature at a time and judiciously copying code from examples on the CD that comes with the text. To obtain the exit pop-up window, start with the code from CloseWindowDemo, Listing 15.10 and add to it. For example, add a call to ConfirmWindow() in the actionPerformed method if the ActionEvent is “Exit”. The setDefaultCloseOperation code is necessary to get the pop-up window when the exit button (the “X” in the upper left corner of the window) is clicked, and the call in actionPerformed is necessary to get the window when “Close” in the “Memos” menu is selected. Next, add the nested menus and make sure it works before actually coding the events for the options. Next, add functionality to the “View” menu options. Unfortunately, there is no program from which to copy the code to make the “Scroll Bars” options functional, but it is mostly a matter of going through “The JScrollPane Class for Scroll Bars” section of Chapter 15 and following the directions. Note that the following line is necessary to make the change visible immediately after selecting any of these options: ``` SwingUtilities.updateComponentTreeUI(this); ```