What is CamelCase notation?
A) A combination of capital and lowercase letters
B) The first and last letters are capitalized; all others are lowercase
C) The first and last letters are lowercase; all others are upper case
D) Every other letter is upper case, then lower case
A
You might also like to view...
An exception object’s ________ method returns the exception’s error message.
a. String b. Message c. Error d. toString
After the user clicks the Speak JButton, what does the following event handler do? The speechSynthesizer variable references a Synthesizer object, which is declared as an instance variable.
``` 1 private void speakJButtonActionPerformed( ActionEvent event ) 2 { 3 speechSynthesizer.allocate(); 4 speechSynthesizer.resume(); 5 6 } // end method speakJButtonActionPerformed ```