Answer the following statements true (T) or false (F)
1. A master/detail view app typically allows the user to select an entry to see (and potentially manipulate) the details associated with that entry.
2. A GUI allows the user to interact with a program visually.
3. A ComboBox can display info and also have user-input info.
4. Labels allow input to be typed into them.
5. ListBoxes and ComboBoxes are identical other than the fact that ComboBoxes have a drop-down list.
1. True
2. True
3. False, TextBoxes allow the user to enter data and can also display data. Comboboxes contain a list of drop-down items that may be added to.
4. False, Labels cannot be changed by the user.
5. False, ListBoxes allow multiple selections at once and ComboBoxes can allow the user to add to its list of items.
You might also like to view...
The navigation buttons allow you to step through a table record by record, or to quickly go to the first or last record in the table
Indicate whether the statement is true or false
Which of the following statements is false?
a. It’s considered good practice to place strings, string arrays, images, colors, font sizes, dimensions and other app resources in XML files within the subfolders of the project’s res folder, so these resources can be managed separately from your app’s Java code. b. If you externalize color values, it becomes more difficult to update all components that use the same color. c. If you wish to localize your app in several languages, storing the strings separately from the app’s code allows you to change them easily. d. In your project’s res folder, the subfolder values contains a strings.xml file that’s used to store the app’s default language strings—English for our apps.