To view or modify the magnification of your document ______, adjust the magnification setting in the document window status bar.
a. window
b. tab
c. tool
d. properties
a. window
You might also like to view...
Given the following function definition, what modifications need to be made to the search function so that it finds all occurrences of target in the array?
int search(const int array[], int target, int numElements) { int index=0; bool found=false; while((!found) && (index < numElements)) { if(array[index] == target) found=true; else index++; } if(found==true) return index; else return -1; } a. Add another parameter to indicate where to stop searching b. Add another parameter to indicate where to start searching c. This already can find all occurrences of a given target d. Have the function return the whole array
In a(n) ______ relationship, a class object has one or more objects of other classes as members.
Fill in the blank(s) with the appropriate word(s).