The object in the database that contains the information you want to display in a report is called the report’s ____.

A. record source
B. subreport
C. query
D. data page


Answer: A

Computer Science & Information Technology

You might also like to view...

If you declare and initialize an integer array of size 10, but only list 5 values, what values are stored in the remaining 5 indexed variables?

a. 0 b. garbage c. 0.0 d. '0'

Computer Science & Information Technology

Which of the following statements is false?

a. A lambda that receives two ints, x and y, and returns their sum is ``` (int x, int y) -> {return x + y;} ``` b. A lambda’s parameter types may be omitted, as in: ``` (x, y) -> {return x + y;} ``` c. A lambda with a one-expression body can be written as: ``` (x, y) -> x + y ``` In this case, the expression’s value is implicitly returned. d. When a lambda's parameter list contains only one parameter, the parentheses may be omitted, as in: ``` value -> System.out.printf("%d ", value) ```

Computer Science & Information Technology

The augmented assignment symbol *= performs _______ .

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

The process that rebuilds database files so that data and database objects are stored more efficiently

a. Backup b. Compact and Repair c. Compact and Rebuild

Computer Science & Information Technology