Information about files such as the author, the date the file was last changed, and any descriptive information is called ________
Fill in the blank(s) with correct word
file properties
You might also like to view...
Match the following terms to their meanings:
I. eWaste II. toner III. censor IV. filter V. conservation A. powdered ink for laser printers and copiers B. avoid consumption when there is not a need C. discarded computers, cell phones, smartphones, televisions, and radios D. blocking parts of content based on legal, political, moral, or other criteria E. selectively blocking inappropriate content
The following code is an example of a __________ recursive algorithm.
``` int myRecursion(int array[], int first, int last, int val) { int num; if (first > last) return -1; num = (first + last)/2; if (array[num] == val) return num; if (array[num] < val) return myRecursion(array, num + 1, last, val); else return myRecursion(array, first, num - 1, val); } ``` a. Towers of Hanoi b. QuickSort c. binary search d. doubly linked list e. None of these