Which of the following statements is least likely to be true about a data warehouse?

A. It is constructed for quick searching and ad hoc queries.
B. It was an original part of all ERP systems.
C. It contains data that are normally extracted periodically from the operating databases.
D. It may be deployed by organizations that have not implemented an ERP.


Answer: B

Computer Science & Information Technology

You might also like to view...

To find a value in an ordered array of 100 items, how many values must binary search examine at most?

A) 7 B) 10 C) 50 D) 100 E) 101

Computer Science & Information Technology

Although it is an exciting medium, 3D animation is still a curiosity on the Web. Why is this? List several reasons.

What will be an ideal response?

Computer Science & Information Technology

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

1. Program readability can be improved by indenting both the true and false tasks of all if-else statements. 2. An algorithm should be carefully hand traced before it is implemented in C. 3. If the value of control is 5, the following switch statement will cause a run-time error. ``` switch (control) { case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; case 4: printf("four"); } ``` 4. The statements on the left always give p the same value as the code on the right, but the code on the right may execute faster. ``` if (x > 15) if (x > 15) p = p * x; p = p * x; if (x > 30) else if (x > 30) p = 2 * p * x; p = 2 * p * x; ``` 5. C accepts any nonzero value as true.

Computer Science & Information Technology

The MATCH function match_type must be set to 0 when matching words

Indicate whether the statement is true or false

Computer Science & Information Technology