A ____ is a collection of related information stored in a structured format.

A. database
B. project
C. form
D. query


Answer: A

Computer Science & Information Technology

You might also like to view...

If a random access file contains a stream of characters, which of the following statements would move the file pointer to the starting byte of the fifth character in the file?

a. file.seek(4); b. file.seek(8); c. file.seek(10); d. file.seek(5);

Computer Science & Information Technology

Analyze the following code.

``` #include using namespace std; class B { public: B() { }; private: int k; }; int main() { B b; cout << b.k << endl; return 0; } ``` a. The program has a runtime error because b.k does not have a value. b. The program displays 1. c. The program displays 0. d. The program displays unpredictable number. e. The program has a compile error because b.k cannot be accessed.

Computer Science & Information Technology

Before you can use Skype to communicate with someone, you must ________

A) type the person's name in the Message box B) add the person to your contacts C) make sure the person is online D) first call the person from your mobile device

Computer Science & Information Technology

One way to straighten out an unstructured flowchart segment is to use the "____" method.

A. detective B. spaghetti code C. pasta bowl D. spaghetti bowl

Computer Science & Information Technology