A benefit to modifying a form in Layout view is that you can make changes to the form design and display the _______________ from the underlying table at the same time.
a. validation rules
b. data
c. field descriptions
d. field properties
Answer: b. data
Computer Science & Information Technology
You might also like to view...
________ is the management activity involved in enterprise computing that deals with maintaining performance, measurement, and corrective action
A) Controlling B) Leading C) Organizing D) Planning
Computer Science & Information Technology
What is the output of the following code segment that invokes calc():
Given the following function: ``` void calc (int a, int& b) { int c; c = a + 2; a = a * 3; b = c + a; } int x = 1; int y = 2; int z = 3; calc(x, y); cout << x << " " << y << " " << z << endl; ``` a. 1 2 3 b. 1 6 3 c. 3 6 3 d. 1 14 9 e. 2 3 4 5
Computer Science & Information Technology