The ________ function defines the categories and how the data should be aggregated

A) CUBEMEMBER
B) CUBEVALUE
C) OLAP
D) DATAMODEL

Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following cables connects the parallel port of the computer to the printer?

a. IEEE 1394 b. IEEE 802.11 c. IEEE 802.3 d. IEEE 1284

Computer Science & Information Technology

For the program in Fig. 5.34, state the scope (either function scope, global namespace scope, local scope or function-prototype scope) of each of the following elements:

``` #include using namespace std; int cube( int y ); // function prototype int main() { int x; for ( x = 1; x <= 10; x++ ) // loop 10 times cout << cube( x ) << endl; // calculate cube of x and output results } // end main // definition of function cube int cube( int y ) { return y * y * y; } // end function cube ``` a) The variable x in main. b) The variable y in cube. c) The function cube. d) The function main. e) The function prototype for cube. f) The identifier y in the function prototype for cube.

Computer Science & Information Technology