Match the following terms to their meanings:
I. Debugging
II. Run Macro action
III. Single stepping
IV. MessageBox macro
V. QuickAccess
A. Using a logical process to find and reduce the number of errors in a program
B. Executes one action at a time
C. Toolbar that includes the save, undo, redo, and customize buttons
D. Used to run a macro from within another macro
E. Trusted action that displays a message box that contains a warning or informational message
A, D, B, E, C
You might also like to view...
A computer consists of various devices referred to as ________ (e.g., the keyboard, screen, mouse, hard disks, memory, DVD drives and processing units).
a. objects b. software c. hardware d. groupware
Specification: Assume that two arrays, x and y, are both fifty-element arrays and that they contain double values. This function is supposed to switch the lowest x value with the lowest y value; that is, the lowest value in x is switched with the lowest value in y.
``` void Switcher(double x[], double y[]) { double low_x = 0, low_y = 0; int i, i_x, i_y; for(i = 0; i < 50; ++ i) { if(x[i] < low_x) low_x = x[i]; //find low x i_x = i; //remember x index if(y[i] < low_y) low_y = y[i]; //find low y i_y = i; //remember y index } y[i_y] = low_x; x[i_x] = low_y; } ```
The ________ operator is used with a class-template name to tie each member-function definition to the class template’s scope.
Fill in the blank(s) with the appropriate word(s).
You ________ data when you import data from an external source without maintaining a link to the original data
Fill in the blank(s) with correct word