What is a GUI?
> Write a statement, after the following code, that creates an HBox container, and adds the label1, label2, and label3 controls to it: Label label1 = new Label("One"); Label label2 = new Label("Two"); Label label3 = new Label("Three");
> What is encapsulation?
> What are an object’s methods?
> What are an object’s attributes?
> In procedural programming, what two parts of a program are typically separated?
> What is the purpose of testing a program with sample data or input?
> Is a syntax error (such as misspelling a key word) found by the compiler or when the program is running?
> What is a runtime error?
> Describe what a compiler does with a program’s source code.
> What is pseudocode?
> What does it mean to “visualize a program running� What is the value of such an activity?
> Write a statement that creates an object that can be used to write binary data to the file Configuration.dat.
> What four items should you identify when defining what a program is to do?
> What is the JVM?
> What is byte code?
> What is a syntax error?
> What is a compiler?
> What happens to a variable’s current contents when a new value is stored there?
> Why are variables called “variable�
> Describe the difference between a program line and a statement.
> Describe the difference between operators and punctuation symbols.
> Describe the difference between a key word and a programmer-defined symbol.
> The method getValueFromFile is public and returns an int. It accepts no arguments. The method is capable of throwing an IOException and a FileNotFoundException. Write the header for this method.
> What type of file does Scene Builder save a GUI to?
> What is FXML?
> What type of scene graph node can have children? What type cannot?
> What are the three types of nodes in a scene graph?
> What is a scene graph?
> What is an event? What is an event listener?
> What is a component?
> What method do you call to change an ImageView’s image?
> What ImageView property do you set in the Inspector panel to display an image?
> Do you normally add RadioButtons or CheckBoxes to a toggle group?
> Write an exception class that can be thrown when a negative number is passed to a method.
> What is the purpose of a toggle group?
> You want the user to be able to select any number of items from a group of items. Which type of component would you use for the items, RadioButtons or CheckBoxes?
> You want the user to be able to select only one item from a group of items. Which type of component would you use for the items, RadioButtons or CheckBoxes?
> What is JavaFX?
> How do you register an event listener to a component in Scene Builder?
> How do you register a controller class to an application’s GUI in Scene Builder?
> What is an event listener?
> What is the controller class?
> In general, what operations does the main application class perform?
> What is an fx:id?
> Write a method that searches a numeric array for a specified value. The method should return the subscript of the element containing the value if it is found in the array. If the value is not found, the method should throw an exception of the Exception c
> Which Scene Builder panel allows you to work with a component’s properties, Âlayout, and code?
> Which Scene Builder panel shows the scene graph?
> Which Scene Builder panel do you use to visually design an application’s GUI?
> Which Scene Builder panel provides a list of JavaFX components?
> What statement would you write in an HTML document to display the text “Hello World†in bold and italic?
> What statement would you write in an HTML document to display the text “My Resume†in bold and centered on the page?
> What statement would you write in an HTML document to display the text “Student Roster†as a level one header?
> What tag marks the beginning and end of an HTML document’s body section?
> What statement would you use in an HTML document to display the text “My Web Page†in the browser’s title bar? What section of the HTML document would this statement be written in?
> Assume that the reference variable r refers to a serializable object. Write code that serializes the object to the file ObjectData.dat.
> What tag marks the beginning and end of an HTML document’s head section?
> What is the difference between the Applet class’s getDocumentBase and getCodeBase methods?
> What methods does an AudioClip object have? What do they do?
> What is the difference between using the Applet method asked for in Checkpoint19.35 , and using an AudioClip object to play a sound file?
> What Applet method can you use to play a sound file?
> How to you cause a Timer object to cease generating action events?
> How do you cause a Timer object to begin generating action events?
> How are the time intervals between a Timer object’s action events measured?
> What type of events do Timer objects generate?
> What is an adapter class, and how does it make some programming tasks easier?
> Look at the following program and tell what it will output when run: public class ExceptionTest { public static void main(String[] args) { int number; String str; try { str = "xyz"; number = Integer.parseInt(str); System.out.println("A"); } catch(NumberF
> What tag marks the beginning and end of an HTML document?
> If a class implements the MouseListener interface but does not need to use all of the methods specified by the interface, can the definitions for those methods be left out? If not, how are these methods dealt with?
> What type of object do mouse listener and mouse motion listener methods accept? What methods do these types of objects provide for determining a mouse cursor’s location?
> What interface would a listener class implement to handle a mouse click event? A mouse press event? A mouse dragged event? A mouse release event? A mouse move event?
> What is the difference between a mouse press event and a mouse click event?
> What Graphics class methods do you use to perform the following tasks? 1. Draw a line. 2. Draw a filled rectangle. 3. Draw a filled oval. 4. Draw a filled arc. 5. Set the drawing color. 6. Draw a rectangle. 7. Draw an oval. 8. Draw an arc. 9. Draw a stri
> What values are contained in the two arrays that are passed to a Graphics object’s drawPolygon method?
> When using a Graphics object to draw an oval, what invisible shape is the oval enclosed in?
> How do you force the paint or paintComponent method to be called?
> In the paint or paintComponent method, what should be done before anything else?
> Look at the following interface: public interface Computable { double compute(double x); } Write a statement that uses a lambda expression to create an object that implements the Computable interface. The object’s name should be half. The half objectâ€
> When are the paint and paintComponent method called?
> Why do applets run in a restricted environment?
> In a JPanel object, do you override the paint or paintComponent method to get a reference to the Graphics object?
> In an AWT component, or a class that extends JApplet or JFrame, if you want to get a reference to the Graphics object, do you override the paint or paintComponent method?
> In Swing, if an object’s class extends JFrame or JApplet, you add components to its content pane. How do you add components to an object if its class extends Frame or Applet?
> To create an applet using AWT, what class do you inherit your applet class from?
> Suppose the file MyApplet.java contains the Java source code for an applet. What tag would you write in an HTML document to run the applet in an area that is 400 pixels wide by 200 pixels high?
> Why is there no need for a static main method to create an instance of an applet class?
> Instead of a constructor, an applet class uses what method?
> Instead of JFrame, an applet class is extended from what class?
> Write the first line of the definition for a Stereo class. The class should extend the SoundSystem class, and it should implement the CDplayable, TunerPlayable, and CassettePlayable interfaces.
> Suppose you wanted to display the text “Click Here†as a link to the Web site http://java.sun.com. What statement would you write to create the text?
> What tag causes a line break? What tag causes a paragraph break? What tag Âdisplays a horizontal rule?
> How is an applet that is associated with a Web page executed on a user’s system?
> What method do you use to store an image in an existing JLabel or JButton component?
> How do you store an image in a JButton component? How do you store both an image and text in a JButton component?
> How do you store an image in a JLabel component? How do you store both an image and text in a JLabel component?
> What is the difference between an uneditable and an editable combo box? Which of these is a combo box by default?
> How do you retrieve the selected item from a JComboBox component? How do you get the index of the selected item?
> How do you cause a scroll bar to be displayed with a JList component?
> What JSlider methods do you use to perform each of these operations? 1. Establish the spacing of major tick marks. 2. Establish the spacing of minor tick marks. 3. Cause tick marks to be displayed. 4. Cause labels to be displayed.
> A superclass has the following method: public void setValue(int v) { value = v; } Write a statement that may appear in a subclass that calls this method, passing 10 as an argument.
> How would each of the following numbers be represented in E notation? 1. 3.287 ×106 2. −9.7865 × 1012 3. 7.65491 × 10−3