A(n) ____________________ is a collection of organized data that can be accessed, retrieved, and used by a program.

Fill in the blank(s) with the appropriate word(s).


database

Computer Science & Information Technology

You might also like to view...

Which of the following code segments writes the contents of three parallel arrays named strStudentName, intID, and strMajor to a file in the format below? Assume all arrays have the same number of elements.

Vince Student, 1234, Computer Science Nancy Student, 4321, Electrical Engineering a. ```For intCount = 0 to strStudentName.Length - 1 outputFile.Write(strStudentName(intCount) outputFile.Write(“, “) outputFile.Write(intID(intCount)) outputFile.Write(“, “) outputFile.WriteLine(strMajor(intCount)) Next intCount ``` b. ```For intCount =0 to strStudentName.Length - 1 outputFile.WriteLine(strStudentName(intCount) & “, “) outputFile.WriteLine(intID(intCount) & “, “) outputFile.WriteLine(strMajor(intCount)) Next intCount ``` c. ``` For intCount = 0 to strStudentName.Length - 1 outputFile.Write(strStudentName(intCount)) outputFile.Write(“, “) outputFile.Write(intID(intCount)) outputFile.Write(“, “) outputFile.Write(strMajor(intCount)) Next intCount ``` d. ```For intCount = 1 to strStudentName.Length outputFile.Write(strStudentName(intCount) outputFile.Write(“, “) outputFile.Write(intID(intCount)) outputFile.Write(“, “) outputFile.Write(strMajor(intCount)) Next intCount ```

Computer Science & Information Technology

Selections that are added to the clipboard using cut or copy can only be pasted within the original document

Indicate whether the statement is true or false

Computer Science & Information Technology

Flipping an image and rotating an image are the same thing

Indicate whether the statement is true or false

Computer Science & Information Technology

The ____ tool is commonly used to annotate or draw attention to key information.

A. Annotation B. Commenting C. Drawing D. Reviewing

Computer Science & Information Technology