____ databases are designed to store a collection of summarized data for quick and easy data analysis.

A. Relational
B. Object-oriented
C. Analytical
D. Multidimensional

Answer: D

Computer Science & Information Technology

You might also like to view...

What class members does the derived class Dog inherit from the base class Animal?

``` class Animal { private: string AnimalType; int age; public: Animal(); SetAnimalType(string at) {AnimalType = at;} SetAge(string a) {age = a;} }; class Dog: public Animal { private: string DogType; public: Dog() {;} SetDogType(string dt) {DogType = dt;} }; ``` A. AnimalType; B. SetAnimalType and SetAge; C. age; D. All of the above.

Computer Science & Information Technology

____ methods are methods that exist to be used with an object created from a class.

A. Nonstatic B. Static C. Hidden D. Controlled

Computer Science & Information Technology