Match the following terms to their meanings:

I. Bound report
II. Unbound report
III. Main report
IV. Subreport
V. Criteria

A. a report that is embedded within another report
B. a report that does not display data from an underlying source
C. a report that displays data from an underlying table, query, or SQL statement
D. a report that contains a subreport
E. must be entered in a report exactly as it displays in the parameter query


C, B, D, A, E

Computer Science & Information Technology

You might also like to view...

What will be printed after the following code is executed?

``` String str = "abc456"; int m = 0; while ( m < 6 ) { if (Character.isLetter(str.charAt(m))) System.out.print( Character.toUpperCase(str.charAt(m))); m++; } ``` a. abc456 b. ABC456 c. ABC d. 456

Computer Science & Information Technology

____ declares an array of three rows and four columns.

A. int val[3,4]; B. int val[4,3]; C. int val[3][4]; D. int val[4][3];

Computer Science & Information Technology

When you combine AND and OR operators, the ____ operators take precedence,meaning their Boolean values are evaluated first.

A. addition B. AND C. OR D. division

Computer Science & Information Technology

You are deploying an application to collect votes for a very popular television show. Millions of users will submit votes using mobile devices. The votes must be collected into a durable, scalable, and highly available data store for real-time public tabulation. Which service should you use?

A. Amazon DynamoDB B. Amazon Redshift C. Amazon Kinesis D. Amazon Simple Queue Service

Computer Science & Information Technology