Which of the following is NOT a reason for using an SQL statement for a record source?

A) You can create a form or report without creating a new query
B) It is easier to transfer a form or report to another database
C) You can click the View arrow and select SQL View from the list of options
D) You can construct the record source of a report at run-time using VBA

C

Computer Science & Information Technology

You might also like to view...

Match the following input devices with their use:

I. gamepad II. OCR III. stylus IV. sensor V. biometric devices A. converts printed documents into text B. detects the status of something and responds to changes in a predictable way C. used to match unique characteristics of each user D. combines several modes of input simultaneously E. a penlike device used to tap the screen

Computer Science & Information Technology

If the input stream go_in contains the following characters:

Roses are red Violets are blue what would be stored in the string variables s1 and s2 after execution of the following code: go_in >> s1; go_in.ignore (100, ā€˜\nā€™); getline (go_in, s2); a) s1: Roses are red, s2: Violets are blue b) s1: Roses, s2: are red c) s1: Roses, s2: Violets d) s1: Roses, s2: Violets are blue

Computer Science & Information Technology