What term best describes an operating system were all program modules share the same address space?

A. protected-mode
B. virtual
C. extended-mode
D. real-mode


Answer: D

Computer Science & Information Technology

You might also like to view...

The StringBuilder class's insert method allows you to insert a(n) __________ into the calling object's string.

a. char array b. primitive type c. String object d. All of these

Computer Science & Information Technology

Develop an application that calculates a restaurant bill (Fig. 9.27). When the user clicks the Add Items JButton, the user should be able to enter the item ordered, the quantity of the item ordered and the price of the item. To do this, three input dialogs will be displayed per item. The user can enter exactly three items. Once all three items have been entered, your application should display the number ordered, the item ordered and the price per unit in three JTextAreas. The event handler should then calculate and display the total price. For each set of input, the item’s information will be appended to the JTextAreas. Display all prices with dollar formats (that is, preceded by a dollar sign and with two digits to the right of the decimal point). Notice that


a) Copying the template to your working directory. Copy the directory C:Examples Tutorial09ExercisesRestaurantBill to your C:SimplyJava directory.
b) Opening the template file. Open the RestaurantBill.java file in your text editor. c) Adding the do…while loop to the addJButtonActionPerformed event handler.
Beginning in line 130, add a do…while statement that will loop three times. Use an
int variable called counter to control the loop.
d) Adding code to the do…while loop. Within the do…while loop, write three state- ments that display input dialogs (using the JOptionPane.showInputDialog method) to retrieve the quantity, name and price of an item, respectively. Use the value of variable counter in the input dialog prompts to indicate that the user is inputting information for the first, second or third item. Convert the result of the quantity input dialog to type int and the result of the price input dialog to type dou- ble. Use JTextArea meth

Computer Science & Information Technology

The ________ feature in Word saves the files you are working on at specific intervals

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which statement is not correct? A query language like SQL

A. is written in a fourth-generation language B. requires user familiarity with COBOL C. allows users to retrieve and modify data D. reduces reliance on programmers

Computer Science & Information Technology