Which of the following is not a good reason for using a form for data entry?

A. Data you enter in a form must then be transferred to the table.
B. You probably will not edit the wrong record.
C. You can show data from more than one table at a time.
D. Your form can resemble paper forms.


Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following statements is false?

a. An advantage of inheritance over interfaces is that only inheritance provides the is-a relationship. b. Objects of any subclass of a class that implements an interface can also be thought of as objects of that interface type. c. When a method parameter is declared with a subclass or interface type, the method processes the object passed as an argument polymorphically. d. All objects have the methods of class Object.

Computer Science & Information Technology

Suppose that alpha and beta are int variables. The statement alpha = ++beta; is equivalent to the statement(s) ____.

A. beta = beta + 1; alpha = beta; B. alpha = beta; beta = beta + 1; C. alpha = alpha + beta; D. alpha = beta + 1;

Computer Science & Information Technology

Which of the following type of WAN technologies uses cell switching?

A. PSTN B. ATM C. T1 D. Frame relay

Computer Science & Information Technology

The following SELECT statement: SELECT EmpFirstName, EmpLastName FROM tblEmployee WHERE EmpLastName Like "[D-G]*"; would list the EmpFirstName and EmpLastName that ________

A) begins with the letters D, E, F, and G sorted in ascending order B) begins with the letters D, E, F, and G sorted in descending order C) begins with the letters D, E, F, and G not sorted in any particular order D) begins with the letters E and F

Computer Science & Information Technology