In what type of multiprocessing systems do several CPUs execute programs and distribute the computing load over a small number of identical processors?

A. cooperative
B. synchronous
C. symmetric
D. delegated


Answer: C

Computer Science & Information Technology

You might also like to view...

A UML diagram does not contain __________.

a. the class name b. the method names c. the field names d. the object names

Computer Science & Information Technology

The vi command : set report=2

a: sets confirmation messages for two or more lines b: sets confirmation messages for exactly two lines c: sets confirmation messages for less than two lines d: sets vi to report two lines of error messages e: sets vi to report twice

Computer Science & Information Technology

Identify valid variable names for the following, and state why the invalid names are not allowed.

Computer Science & Information Technology

Modify the Craps Game application from Tutorial 15 to use the Java Speech API. The completed application is shown in Fig. 28.19.


a) Copying the template to your working directory. Copy the C:Examples Tutorial28ExercisesCrapsGameEnhancement directory to your C:SimplyJava directory.
b) Opening the template file. Open the CrapsGame.java file in your text editor.
c) Importing Java Speech API packages. Import the javax.speech and the
javax.speech.synthesis packages.
d) Declaring instance variables. Above the CrapsGame constructor, declare an instance variable of type Synthesizer, which is used to speak text.
e) Creating a Synthesizer object. Inside the CrapsGame constructor, create a Synthe- sizer object, allocate the resource and prepare the synthesizer to speak.
f) Adding code to the instructionsJButtonActionPerformed method. Find the instructionsJButtonActionPerformed method, which immediately follows cre- ateUserInterface. Add code to the instructionsJButtonActionPerformed method so that the speech synthesizer speaks the instructions of the game.
g) Adding code to

Computer Science & Information Technology