In the ____ query, data is selected from the table on which the query is based and displayed in a datasheet.
A. action
B. select
C. crosstab
D. base
Answer: B
Computer Science & Information Technology
You might also like to view...
Mutator methods are sometimes called __________.
a. getters b. accessors c. setters d. constructors
Computer Science & Information Technology
In Normal view, slides in the left hand pane are displayed as ________
Fill in the blank(s) with correct word
Computer Science & Information Technology
The default setting for the MsgBoxStyle argument of a message box will display only a(n) ____________________ button in the message box.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
To check if a string s contains the prefix "Java", you may write
a. if (s.startsWith("Java")) ... b. if (s.indexOf("Java") == 0) ... c. if (s.substring(0, 4).equals("Java")) ... d. if (s.charAt(0) == 'J' && s.charAt(1) == 'a' && s.charAt(2) == 'v' && s.charAt(3) == 'a') ...
Computer Science & Information Technology