When cleaning up the startup process, which of these should you do first?
a. Use the Registry Editor to look for keys that hold startup processes.
b. Run System Configuration to see what processes are started.
c. After you have launched several applications, use Task Manager to view a list of running tasks.
d. Run the Defrag utility to optimize the hard drive
Answer: b. Run System Configuration to see what processes are started.
You might also like to view...
Which IDPS customization option is a list of entities known to be harmless?
A. thresholds B. whitelists C. blacklists D. alert settings
Find the error(s) in the following code. The method should have a Synthesizer object say, “Hello, here are the instructions to run the application.” This should happen when the user clicks the Instructions JButton. The speechSynthesizer variable references a Synthesizer object, which is declared as an instance variable.
``` 1 private void instructionsJButtonActionPerformed( ActionEvent event ) 2 { 3 speechSynthesizer.setSpeakingRate( 100.0f ); 4 speechSynthesizer.speakPlainText( 5 "Hello, here are the instructions to run the application" ); 6 7 } // end method instructionsJButtonActionPerformed ```