Case-Based Critical Thinking QuestionsCase 5-2Dean has been using computers for some time now, but he is unfamiliar with a number of utility programs. In order to better maintain his computer, he decides to ask his coworker Andrea for advice on basic utility programs.
Andrea tells Dean that he should periodically perform ____ on his computer to optimize the hard drive so that it works more efficiently. This process works by rearranging the data on the hard drive so all files are stored in contiguous locations.
A. disk defragmentation
B. file compression
C. disk cleanup
D. backup
Answer: A
You might also like to view...
A hyperlink is either text or a graphic that you click to go to a file, a location in a file, or a web page
Indicate whether the statement is true or false
The startValue in a For...Next loop structure may be omitted.
Answer the following statement true (T) or false (F)
Which set of statements totals the items in each row of two-dimensional array items, and displays each total?
a) int total = 0; for (int row = 0; row < items.Length; ++row) { total = 0; for (int column = 0; column < a[row].Length; ++column) { total += a[row][column]; } } b) int total = 0; for (int row = 0; row < items. Length; ++row) { for (int column = 0; column < a[row]. Length; ++column) { total += a[row][column]; } } c) int total = 0; for (int row = 0; row < items. Length; ++row) { for (int column = 0; column < a[column].length; ++column) { total += a[row][column]; } } d) int total = 0; for (int row = 0; row < items. Length; ++row) { total = 0; for (int column = 0; column < a[column].length; ++column) { total += a[row][column]; } }
The __________method returns the character located at a specific index in a String.
a) get b) char c) getAt d) charAt