A(n) ________ is a custom file property that allows you to add keywords to a file to categorize and organize
A) name
B) tag
C) extension
D) objective
B
Computer Science & Information Technology
You might also like to view...
The data provided on the UnitsSold worksheet required some cleaning before it could be analyzed to calculate the estimated annual demand. What text functions did you use to clean the data? Explain how you knew which text functions to use
What will be an ideal response?
Computer Science & Information Technology
Which of the following for-loop control headers results in equivalent numbers of iterations:
1) for (int q = 1; q <= 100; ++q) 2) for (int q = 100; q >= 0; --q) 3) for (int q = 99; q > 0; q -= 9) 4) for (int q = 990; q > 0; q -= 90) a) 1) and 2) b) 3) and 4) c) 1) and 2) have equivalent iterations and 3 and 4 have equivalent iterations d) None of the loops have equivalent iterations
Computer Science & Information Technology