What are data warehousing and data mining? How do businesses use these tools?

What will be an ideal response?

A data warehouse is an integrated collection of data that can include seemingly unrelated information, no matter where it is stored in the company. Because it can link various information systems and databases, a data warehouse provides an enterprise-wide view to support management analysis and decision making. Data mining software looks for meaningful patterns and relationships among data. For example, data mining software could help a consumer products firm identify potential customers based on their prior purchases. The terms are related in the sense that both refer to data storage and extraction. The data warehouse, however, describes data organization and storage; while data mining focuses on methods of obtaining valuable business knowledge from a data warehouse.

Computer Science & Information Technology

You might also like to view...

What is the value of the variable ACCUM after instructions corresponding to the following pseudocode are executed?

``` ACCUM = 1 COUNT = 0 DOUNTIL COUNT ? 4 ACCUM = ACCUM + ACCUM COUNT = COUNT + 1 ENDDO ``` a) 8 b) 16 c) 32 d) 64

Computer Science & Information Technology

Suppose you enter 34.3 57.8 789, then press the ENTER key. Analyze the following code. Scanner input = new Scanner(System.in); double v1 = input.nextDouble(); double v2 = input.nextDouble(); String line = input.nextLine();

a. After the last statement is executed, line contains characters '7', '8', '9'. b. After the last statement is executed, line contains characters '7', '8', '9', '\n'. c. After the last statement is executed, line contains characters ' ', '7', '8', '9', '\n'. d. After the last statement is executed, line contains characters ' ', '7', '8', '9'.

Computer Science & Information Technology