Describe the types of situations that produce sparse or dense data cubes. Illustrate with examples other than those used in the book.

What will be an ideal response?


would produce sparse data cubes. This would include sets of continuous
attributes where the set of objects described by the attributes doesn’t occupy
the entire data space, but only a fraction of it, as well as discrete attributes,
where many combinations of values don’t occur.
A dense data cube would tend to arise, when either almost all combinations of
the categories of the underlying attributes occur, or the level of aggregation is
high enough so that all combinations are likely to have values. For example,
consider a data set that contains the type of traffic accident, as well as its
location and date. The original data cube would be very sparse, but if it is
aggregated to have categories consisting single or multiple car accident, the
state of the accident, and the month in which it occurred, then we would
obtain a dense data cube.

Computer Science & Information Technology

You might also like to view...

If the following pseudocode was coded and executed, what would display?

``` Declare String str = "a1b2c3d4" Declare Integer index Declare Integer num = 0 For index = 0 To length(str) - 1 If isDigit(str[index]) Then Set num = num + index End If End For Display num ``` a. 15 b. 8 c. 16 d. 28

Computer Science & Information Technology

Which of the following is NOT a part of a typical single-user license agreement?

A. You can make one copy of the software as a backup.  B. You can rent or lease the software. C. You cannot install the software on a network. D. You cannot export the software.

Computer Science & Information Technology

Name three types of variables used in PL/SQL. Where are they declared? Give a sample declaration of each.

What will be an ideal response?

Computer Science & Information Technology

Because a channel and the computer are independent, the main processor has no way of knowing when an I/O operation is completed unless the channel tells it. Thus as the last character of data flows across the channel, the channel processor sends the main processor an electronic signal called a(n) __________.

a. interrupt b. The premise of this question is false. c. I/O signal d. control signal

Computer Science & Information Technology