Write a SELECT statement to list students that live either in zip code 11433, 11434, or 11435. (5 rows)
What will be an ideal response?
```
SELECT *
FROM student
WHERE zip IN ('11433', '11434', '11435')
```
You might also like to view...
Which of the following fields in an e-mail header can be used to sort messages according to the sender?
A. Date B. Subject C. From D. To
Create an application that uses nested menus to choose an ice cream sundae. The “Choices” menu will have three submenus. The “Flavor” submenu will have three menu items: Chocolate, Strawberry, and Vanilla. The “Toppings” menu will have four menu items: Chocolate chips, Sprinkles, Nuts, and Peppermint. The “Syrup” menu will have three menu items: Chocolate, Butterscotch, and Berry. As the choices are made, update a label in the center of the application. The “Actions” menu will have two items: Clear will clear the current order, and Quit will exit the application.
What will be an ideal response?
Which of the following makes a good password?
a. Al least eight characters b. The password uses a combination of letters, numbers, and special characters c. The password has no obvious relevance to the user d. All the above
Functions:
a. Are basically the same as modules. b. Can be executed at any time during the execution of a program. c. Are only executed during the processing of an event. d. All of the above. e. a and b. f. None of the above.