Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
| 1. | What is the name of the frame where all your projects are listed? |
| Projects | |
| 2. | What is the name of the wizard used to create a new JavaFX project? |
| The New JavaFX Project Wizard | |
| 3. | What is another name for a namespace? |
| A package | |
| 4. | Which panel of the NetBeans IDE lets you navigate through code samples? |
| The Palette | |
| 5. | True or false? The Snippets panel contains predefine pieces of reusable code. |
| False. It is the Palette that contains predefine pieces of reusable code. | |
| 6. | What file extension is assigned to JavaFX Script files? |
| .fx | |
| 7. | What type of word is “package” in the JavaFX script? |
| A keyword, or reserved word | |
| 8. | True or false? Every line of your script must end with a period. |
| False. Code lines must end with a semicolon. | |
| 9. | What are the beginning and ending characters for comments? |
/* and */
| |
| 10. | What type of variable or attribute is the following? |
title: "MyApp" A name-value pair |