Access lets you create a special macro named ____ that runs automatically when a database is opened.
A. AutoExec
B. AutoStart
C. Run
D. StartForm
Answer: A
You might also like to view...
Answer the following statements true (T) or false (F)
1) The statement always displays x is 10, regardless of the value of x when the statement is encountered. ``` if (x = 10) cout << "x is 10" << endl; ``` 2) The value of the expression is true. ``` 15< 20 || 20 >= 20 ``` 3) C++ has a data type named bool whose only values are true and false. 4) Evaluating only as much of an expression as is necessary is called short-circuit evaluation. 5) The code fragment on the left always gives p the same value as the code fragment on the right. ``` if (x > 15) if (x > 15) p = p * x; p = p * x; if (x > 30) else if (x > 30) p = 2 * p * x; p = 2 * p * x; ```
Match each of the following ports to its most common use:
I. USB II. Ethernet III. DVI IV. VGA V. HDMI A. used for home theater systems B. commonly used for connecting input and output devices C. commonly used to connect CRT monitors in older systems D. used to connect a computer to a network E. commonly used to connect projectors to a computer system
The practice of moving library folders to a different location, which is often a shared folder on a server, is called ___________
a. Folder redirection b. Folder swapping c. Profiling d. None of the above
struct nodeType{ int info; nodeType *link;};nodeType *head, *p, *q, *newNode;newNode = new nodeType; Consider the accompanying code. What is the effect of the following statement?newNode->info = 50;
A. Stores 50 in the info field of the newNode B. Creates a new node C. Places the node at location 50 D. Cannot be determined from this code