A(n) ____________________ is a set of actions that you use to automate tasks.

Fill in the blank(s) with the appropriate word(s).


macro

Computer Science & Information Technology

You might also like to view...

What is the output of the following code fragment?

int f1(int n, int m) { if(n < m) return 0; else if(n==m) return m+ f1(n-1,m); else return n+ f1(n-2,m-1); } int main() { cout << f1(5,4); return 0; } a. 0 b. 2 c. 4 d. 8 e. infinite recursion

Computer Science & Information Technology

Map the object-oriented database design for the University Accommodation Office case study produced in Exercise 27.26 to the ODMG ODL.

What will be an ideal response?

Computer Science & Information Technology

If someone were to ask you to prove that your application is secure, what would the Application Guide prove?

A. That you have secure code B. documentation of the reusable, secure process C. That you have tools configured D. That the software is bug free

Computer Science & Information Technology

Check boxes are selected by default.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology