Critical Thinking
?
Case 6-2
?
Over the Spring Break, you decide to clean up the files on your computer to make sorting and searching faster.  You cannot remember the best methods to accomplish this task, so you consult a friend.
?Your friend also reminds you that the index will not perform well if

A. ?it grows too large.
B. ?it is too small.
C. ?it contains program and system files.
D. ?it is searching an SSD.

Answer: A

Computer Science & Information Technology

You might also like to view...

When a picture is applied to a slide background using the Format Background option, you can move or resize the picture.

a. true b. false

Computer Science & Information Technology

Consider the following code fragment.

``` char str[10]; scanf("%s", str); ``` What will happen if scanf encounters the string "vivaciously" when scanning a value for str? a. Since there is not enough room in str for the whole string, only "vivacious" will be stored in str. b. Function scanf will store the entire string "vivaciously", even though there is insufficient space in str. The string will overflow str. c. The program will abort with an error message. d. Only "vivacious" will be scanned and stored, leaving "ly" on the input line. e. None of the above.

Computer Science & Information Technology