The process of moving tables into one database file, and forms, queries, and reports into a separate database file is called ________

A) splitting
B) separating
C) jamming
D) moving


A

Computer Science & Information Technology

You might also like to view...

Programmers use the term ____________ to describe the part of a program in which a variable may be accessed.

a. scope b. lifetime c. method d. accessibility

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; void f(double &p) { p += 2; } int main() { double x = 1; double y = 1; f(x); f(y); cout << "x is " << x; cout << " y is " << y << endl; return 0; } ``` a. x is 2 y is 1 b. x is 3 y is 3 c. x is 2 y is 2 d. x is 1 y is 1 e. x is 1 y is 2

Computer Science & Information Technology

Use either Visio or Visible Analyst to view the UPDATE LAB IMAGE activity diagram.

What will be an ideal response?

Computer Science & Information Technology

Windows 7 can be installed from a USB drive

Indicate whether the statement is true or false

Computer Science & Information Technology