Information collected by an organization from a variety of external and internal databases is stored in this special type of database.

A. data warehouse
B. company warehouse
C. commercial database
D. company database


Answer: A

Computer Science & Information Technology

You might also like to view...

In Visual Studio, choose the ____________ template when creating a database file.

a. Service-based Database b. Local Database c. DataSet d. XML Schema

Computer Science & Information Technology

What technology has replaced Ethernet hubs?

What will be an ideal response?

Computer Science & Information Technology

Vista's speech recognition feature can be used to force a PC into executing some commands.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

When this process is complete, the list elements that are still set to 1 indicate that the subscript is a prime number. These subscripts can then be printed. Write a program that uses a list of 1000 ele- ments to determine and print the prime numbers between 2 and 999. Ignore element 0 of the list.

A prime integer is any integer greater than 1 that is evenly divis- ible only by itself and 1. The Sieve of Eratosthenes is a method of finding prime numbers. It operates as follows: a) Create a list with all elements initialized to 1 (true). List elements with prime subscripts will remain 1. All other list elements will eventually be set to zero. b) Starting with list element 2, every time a list element is found whose value is 1, loop through the remainder of the list and set to zero every element whose subscript is a multiple of the subscript for the element with value 1. For list subscript 2, all elements beyond 2 in the list that are multiples of 2 will be set to zero (subscripts 4, 6, 8, 10, etc.); for list subscript 3, all elements beyond 3 in the list that are multiples of 3 will be set to zero (subscripts 6, 9, 12, 15, etc.); and so on.

Computer Science & Information Technology