Mis430 Data Warehousing Final

Approved & Edited by ProProfs Editorial Team
The editorial team at ProProfs Quizzes consists of a select group of subject experts, trivia writers, and quiz masters who have authored over 10,000 quizzes taken by more than 100 million users. This team includes our in-house seasoned quiz moderators and subject matter experts. Our editorial experts, spread across the world, are rigorously trained using our comprehensive guidelines to ensure that you receive the highest quality quizzes.
Learn about Our Editorial Process
| By Bcorazza
B
Bcorazza
Community Contributor
Quizzes Created: 14 | Total Attempts: 4,758
Questions: 52 | Attempts: 258

SettingsSettingsSettings
Mis430 Data Warehousing Final - Quiz

MIS 430 FINAL data warehousing at gmu university


Questions and Answers
  • 1. 

    ---------------- schema is a normalized version of the STAR schema in which dimension tables are partially or fully normalized. Not generally recommended because it compromises query performance and simplicity for understanding.

    Explanation
    The given correct answer is "snowflake." In the context of database design, a snowflake schema is a normalized version of the star schema. In a snowflake schema, dimension tables are partially or fully normalized, meaning they are broken down into multiple tables to reduce redundancy and improve data integrity. However, this normalization can lead to more complex queries and slower performance compared to the star schema, which is why it is not generally recommended.

    Rate this question:

  • 2. 

    ------------------- schema is the arrangement of the collection of fact and dimension tables in the dimensional data model , resembling a star formation, with the fact table placed in the middle surrounded by the dimension tables. Each dimension table is in a one to many relationship with the fact table.

    Explanation
    The given correct answer is "star". In the dimensional data model, the schema is arranged in a star formation, where the fact table is placed in the middle and surrounded by dimension tables. Each dimension table has a one-to-many relationship with the fact table. This star schema is commonly used in data warehousing and allows for efficient querying and analysis of data.

    Rate this question:

  • 3. 

    ----------------- normal form, data is atomic, no repeating groups, primary key.

    Explanation
    The given answer "first" does not seem to be related to the provided explanation. The explanation mentions characteristics of a normal form, such as data being atomic, no repeating groups, and having a primary key. However, it does not provide any specific information or context to determine why "first" would be the correct answer. Without further information, it is not possible to generate a meaningful explanation for this question.

    Rate this question:

  • 4. 

    -------------------- normal form, relates to rows in a table, no duplicate data in rows, duplicate data moved to another table, every attribute depends on the entire key.

    Explanation
    The second option is the correct answer because it accurately describes the properties of a table in normal form. Normal form refers to the organization and structure of data in a relational database. In a normal form, there are no duplicate rows of data, and any duplicate data is moved to another table. Additionally, every attribute in the table depends on the entire key, meaning that each attribute is uniquely identified by the key.

    Rate this question:

  • 5. 

    ---------------------- normal form, relates to relationships between tables, no transitive dependency, every attribute depends on the primary key.

    Explanation
    The given explanation describes the concept of normal form in database design. It states that in a normal form, relationships between tables are defined without any transitive dependency. Additionally, it mentions that every attribute in a normal form depends on the primary key. The correct answer, "third," aligns with this explanation.

    Rate this question:

  • 6. 

    ------------------- looks like a table, acts like a table, not a table.-Restores intrusiveness to a database-Eases user querying-Data Security    abstracts the database implementation    allows for database changes behind the scenes as well    limit access to sensitive information

    Explanation
    Views in a database are virtual tables that are created based on the result of a query. They act like tables because they can be queried and manipulated like regular tables, but they are not physical tables themselves. Views restore intrusiveness to a database by allowing users to access and query specific data without directly accessing the underlying tables. They also ease user querying by providing a simplified and customized view of the data. Views can limit access to sensitive information by only displaying certain columns or rows, enhancing data security. Additionally, views abstract the database implementation and allow for changes to be made to the underlying tables without affecting the view's structure or functionality.

    Rate this question:

  • 7. 

    --------------- indexes, the order in which the data is physically stored.

    Explanation
    The correct answer is "primary clustered". In a primary clustered index, the data is physically stored in the same order as the index. This means that the rows in the table are physically sorted based on the values in the indexed column(s). This can improve the performance of queries that involve range scans or sorting operations, as the data is already organized in the desired order. Having a primary clustered index can also help reduce disk I/O and improve data retrieval speed.

    Rate this question:

  • 8. 

    -------------- indexes, internal table that points to actual data locations.

  • 9. 

    Database ------------- reduces data duplication, increases data integrity.

    Explanation
    Normalization is a process in database design that organizes data into separate tables to reduce data duplication and increase data integrity. By breaking down data into smaller, more manageable tables and establishing relationships between them, normalization helps to eliminate redundant data and ensures that each piece of information is stored in only one place. This enhances data integrity by minimizing the risk of inconsistencies or discrepancies in the database. Therefore, normalization is the correct answer as it effectively reduces data duplication and improves data integrity in a database.

    Rate this question:

  • 10. 

    ---------------- break all composite attributes into single attributes, data is not duplicated in columns.

    Explanation
    In database design, the concept of atomicity refers to breaking down composite attributes into single attributes. This means that instead of storing multiple pieces of data within a single column, each piece of data is stored in its own separate column. By doing this, data is not duplicated within columns, which helps to ensure data integrity and avoid redundancy. Therefore, the given answer "atomic" is correct as it accurately describes the process of breaking down composite attributes into single attributes.

    Rate this question:

  • 11. 

    --------------------- attributes, not allowed in a normalized database, use another table.

    Explanation
    In a normalized database, attributes that have multiple values are not allowed. This is because having multiple values in a single attribute violates the principle of atomicity, which states that each attribute should have a single value. Therefore, to handle multi-valued attributes, it is necessary to use another table. This additional table will have a foreign key that links it to the main table, allowing for a one-to-many relationship and avoiding data redundancy.

    Rate this question:

  • 12. 

    --------------- attributes, not stored in the relational tables.

    Explanation
    Derived attributes are not stored in the relational tables but are calculated or derived from other attributes in the table. These attributes are determined based on the values of other attributes and can be calculated whenever needed. Unlike regular attributes, derived attributes do not require separate storage as their values can be obtained through calculations or formulas. Therefore, derived attributes are not physically stored in the tables but are dynamically derived when required.

    Rate this question:

  • 13. 

    These characteristics describe ---------------- of a data warehouse?- 1. Source data ( comes from transactional databases or data mart)- 2. Data staging ( data gets filtered and cleaned)- 3. Data storage ( data gets stored)- 4. Information delivery (how users get the data ex report, query)

    Explanation
    The given characteristics describe the components of a data warehouse. These components include the source data, which comes from transactional databases or data marts. The data staging component involves filtering and cleaning the data before it is stored. The data storage component is where the data is stored in the data warehouse. Finally, the information delivery component determines how users can access the data, such as through reports or queries.

    Rate this question:

  • 14. 

    These characteristics describe -------------- of a data warehouse?- Tables are normalized- Consists of Fact and Dimension tables.- Information is read only

    Explanation
    The given characteristics describe the properties of a data warehouse. In a data warehouse, tables are often normalized to eliminate redundancy and improve data integrity. It consists of Fact and Dimension tables, where Fact tables store the measurable data and Dimension tables provide context and descriptive attributes. Additionally, data in a data warehouse is typically read-only, meaning it is not updated or modified frequently, but rather used for analysis and reporting purposes.

    Rate this question:

  • 15. 

    These characteristics describe -------------- tables?- A table in data ware house were measures are placed- Aggregation happens in this table- Many records in this table.- Numeric data

    Explanation
    The given characteristics describe a fact table in a data warehouse. Fact tables are used to store measures or metrics, such as sales revenue or quantity sold, and they are typically used for aggregation purposes. Fact tables contain many records and are primarily composed of numeric data. Therefore, the correct answer is "fact."

    Rate this question:

  • 16. 

    These characteristics describe -------------- tables?-These tables ask a question-Used to slice and dice the data- If numeric data use as a buffer- Has more columns or fields

    Explanation
    The characteristics mentioned in the question, such as asking a question, slicing and dicing the data, using numeric data as a buffer, and having more columns or fields, all point towards dimension tables. Dimension tables in data analysis are used to provide context and describe the dimensions or attributes of the data being analyzed. They help in organizing and categorizing data for better analysis and understanding.

    Rate this question:

  • 17. 

    ------------------ databases are normalized, they rely on referential integrity, relationships are important, use primary and foreign keys to relate to each other.

    Explanation
    The given statement describes the characteristics of a relational database. In a relational database, data is organized into tables and relationships between tables are established using primary and foreign keys. Referential integrity ensures that these relationships are maintained and data remains consistent. Therefore, the correct answer is "relational."

    Rate this question:

  • 18. 

    Type ------- dimension you simply change errors no history is maintained. Ex. Customer Key     FName     LName        Location          Gender        101                   john          smith        Washington          male--he moved from Washington to ChicagoFix  Customer Key    FName      LName        Location          Gender         101                  john           smith        Chicago               male

  • 19. 

    Type ----------- dimension, true changes in the source system, history must be preserved, partitions the history in the data warehouse, every change for the same attribute must be preserved. Ex. Customer Key      Fname         Lname       Location           Gender        101                       john          smith          washington        male         102                      john          smith           chicago             male

    Explanation
    The given answer "two" suggests that the data warehouse should preserve the history of changes for the same attribute. This means that if there are multiple changes made to an attribute, all of those changes should be stored in the data warehouse. In the example provided, the attribute "Location" has two different values for the same customer, indicating that the history of changes for this attribute is being preserved.

    Rate this question:

  • 20. 

    Type ------------------ dimension, tentative changes in the source system, need to keep old and new value, ability to track forward and backward.Ex. Customer Key      Fname       Lname        Location        Gender        101                    john           smith           washington    male        Customer Key    Fname       Lname        O location         N location      Gender        101                    john            smith          washington      chicago          male

    Explanation
    The correct answer is "three". This is because the given scenario involves a change in the location attribute in the source system, and the requirement is to keep track of both the old and new values. This implies that a new column, "O location" (old location), is added to store the previous value, and a column, "N location" (new location), is added to store the updated value. Therefore, the total number of dimensions in this scenario is three.

    Rate this question:

  • 21. 

    These characteristics describe --------------------?- Family of STARS-Must have conformed dimensions-Must share 2 dimensions-Conformed fact tables -Snow flaking ( used to relate fact tables with different granularity)

    Explanation
    The characteristics described in the question, such as the family of stars, conforming dimensions, sharing two dimensions, conformed fact tables, and snowflaking, all point towards the concept of "constellations." In the context of data warehousing, constellations refer to a modeling technique where multiple fact tables are related to a central dimension table, allowing for analysis and reporting across different levels of granularity. This technique helps in organizing and structuring data in a way that facilitates efficient data analysis and reporting.

    Rate this question:

  • 22. 

    ------------------ dimensions at least two fact tables share two dimensions.Power behind the data warehouse- Adding facts-Adding dimensions-Adding measures -Adding dimension attributes

    Explanation
    The term "conformed" in this context refers to the concept of having shared dimensions between multiple fact tables in a data warehouse. When two or more fact tables share the same dimensions, it means that these dimensions have the same structure, attributes, and meaning across all the tables. This conformity ensures consistency and allows for accurate analysis and reporting across different fact tables. By conforming dimensions, the data warehouse can effectively integrate data from various sources and provide a holistic view of the business operations.

    Rate this question:

  • 23. 

    ---------------- is filtering data in a cube?

    Explanation
    Slice and dice is a technique used in data analysis to filter and manipulate data in a cube. It involves selecting specific dimensions or attributes of the data to focus on and then drilling down or slicing the data further to gain more detailed insights. By slicing, we are filtering the data by selecting a specific subset of the dimensions, while dicing involves filtering the data by selecting multiple subsets of dimensions. Therefore, slice and dice is the correct answer for the given question.

    Rate this question:

  • 24. 

    ------------ looking at data in a different way, not data change just change, way rows in a column looks.

    Explanation
    The explanation for the given correct answer "rotation" is that it refers to the act of looking at data in a different way by changing the way rows in a column are displayed. This suggests that the data is being rotated or reorganized to provide a different perspective or view.

    Rate this question:

  • 25. 

    -----------------  to finer level of detail.

    Explanation
    The term "drill down" refers to the process of analyzing data or information at a more detailed or granular level. It involves breaking down complex information into smaller parts to gain a deeper understanding or uncover more specific insights. This term is commonly used in data analysis, business intelligence, and reporting to explore data hierarchies and navigate from a higher-level overview to a more specific level of detail. By drilling down, analysts can identify patterns, trends, and outliers that may not be apparent at a higher level of aggregation.

    Rate this question:

  • 26. 

    ------------------ look up aggregate data opposite of drill down hierarchy.

    Explanation
    The term "roll up" refers to the process of summarizing or consolidating detailed data into higher-level categories or groups. In the context of analyzing data, it is the opposite of "drill down" or "drilling down," which involves examining data at a more detailed or granular level. "Rolling up" allows for a broader view or perspective of the data, providing a higher-level summary that can be useful for decision-making or reporting purposes.

    Rate this question:

  • 27. 

    These are examples of -----------------------?Year -------> Month ----------> DateYear -------->Week -----------> Date-Date breaks up Month and Month breaks up Year

    Explanation
    The given answer, "hierarchy," is correct because the examples provided show a hierarchical structure. The first example shows a hierarchy where a year is broken down into months, and then further broken down into dates. The second example shows a similar hierarchy where a year is broken down into weeks, and then further broken down into dates. In both cases, the structure follows a hierarchical pattern where each level is broken down into smaller units. Therefore, "hierarchy" is the appropriate term to describe this pattern.

    Rate this question:

  • 28. 

    Normalization is important --------------- the data warehouse because of data integrity, space, duplication.

    Explanation
    Normalization is important outside the data warehouse because it helps maintain data integrity, reduce storage space, and eliminate duplication. By normalizing the data outside the data warehouse, we can ensure that the data is organized and structured efficiently, minimizing the chances of data inconsistencies and anomalies. Additionally, normalization helps in optimizing storage space by reducing redundant data and improving data retrieval performance.

    Rate this question:

  • 29. 

     a data warehouse uses more --------------- because its denormalized.

    Explanation
    A data warehouse uses more space because it is denormalized. In a denormalized data warehouse, redundant data is stored to improve query performance and simplify data retrieval. This redundancy leads to an increase in the amount of storage space required compared to a normalized database, where data is organized more efficiently to minimize redundancy.

    Rate this question:

  • 30. 

    A ---------------- database has more tables cause its normalized.

    Explanation
    A relational database is likely to have more tables because it follows the principles of normalization. Normalization is the process of organizing data in a database to eliminate redundancy and improve data integrity. This involves breaking down data into smaller, more manageable tables and establishing relationships between them. By doing so, data redundancy is minimized, and data integrity is improved. Therefore, a relational database with a normalized structure is likely to have more tables compared to a non-relational database.

    Rate this question:

  • 31. 

    ----------------- is easier in data warehouse not normalized easy for user.

    Explanation
    Querying is easier in a data warehouse that is not normalized because normalization involves breaking down data into multiple tables to minimize redundancy. However, this can make querying more complex as it requires joining multiple tables to retrieve the desired information. In a denormalized data warehouse, data is stored in a single table or fewer tables, making it easier for users to query and retrieve data without the need for complex joins.

    Rate this question:

  • 32. 

    ----------------- of a fact table is combination of a fact tables lowest level.Ex. store, month, state.

    Explanation
    The term "grain" refers to the level of detail or granularity in a fact table. It represents the combination of the lowest level of the fact table, such as store, month, and state. In other words, the grain determines the specific dimensions or attributes that are included in the fact table. For example, if the grain is set to store, month, and state, the fact table will include data at that level of detail.

    Rate this question:

  • 33. 

    These characteristics describe -------------------- types ?Sum, Avg, count count distinct.

    Explanation
    The given answer "aggregation" is correct because the characteristics mentioned, such as "Sum, Avg, count count distinct," are commonly associated with aggregation functions in data analysis or database operations. Aggregation involves combining multiple values into a single value, often using functions like sum, average, or count. These functions are used to summarize or calculate values from a larger set of data, making "aggregation" the appropriate term to describe the mentioned characteristics.

    Rate this question:

  • 34. 

    Use ------------ aggregation type to add up fields?

    Explanation
    The sum aggregation type is used to add up fields. This means that it calculates the total sum of the values in a specific field. It is commonly used in data analysis to obtain the total sum of numerical values in a dataset. By using the sum aggregation, one can quickly determine the cumulative value of a particular field, providing valuable insights into the data.

    Rate this question:

  • 35. 

    Use --------------- aggregation type to to count all order keys for example tell me how many distinct order keys there are and count them, thats how many orders i have.

    Explanation
    The given correct answer suggests using the "count distinct" aggregation type to determine the number of distinct order keys. This aggregation function counts the number of unique values in a specific column, in this case, the order keys. By applying the "count distinct" function to the order keys, we can obtain the total count of unique order keys, which corresponds to the number of orders.

    Rate this question:

  • 36. 

    -----------------  data stored in the cube.

  • 37. 

    ------------------ data stored on the relational side.

  • 38. 

    --------------- attribute break up another table.

    Explanation
    The given correct answer "multi valued" suggests that the attribute in question is capable of having multiple values for a single entity. This means that the attribute can have more than one value associated with it, and these values can be stored in a separate table. This allows for a more efficient and organized way of representing the data, as each value can be stored in a separate row in the table, linked to the main entity through a foreign key.

    Rate this question:

  • 39. 

    ------------------ attributes break up into atomic columns?

    Explanation
    The term "composite" refers to the process of breaking up attributes into atomic columns. In a database, attributes are typically organized into tables and columns. When an attribute is composite, it means that it is made up of multiple sub-attributes or atomic columns. This allows for more flexibility and efficient data storage and retrieval. By breaking up attributes into atomic columns, it becomes easier to manipulate and analyze the data.

    Rate this question:

  • 40. 

    --------------- exception to the rule that allows snow flaking.

    Explanation
    An outrigger is an exception to the rule that allows snow flaking. Snow flaking is a technique used in database design where a large table is broken down into smaller, more manageable tables. However, an outrigger is a separate table that is not directly related to the main table but is linked to it through a foreign key. This allows for additional information or attributes to be stored without altering the structure of the main table. Therefore, an outrigger is an exception to the snow flaking rule as it introduces an additional table in the database design.

    Rate this question:

  • 41. 

    -------------- playing dimension, is a dimension connected or related multiple times to a fact table.

  • 42. 

    ---------------- fact table does not have measures only surrogate keys.

    Explanation
    The given answer "factless" suggests that the fact table does not contain any measures, only surrogate keys. In a data warehouse, a fact table typically contains quantitative data or measures that can be analyzed, such as sales revenue or customer count. However, in some cases, a fact table may not have any measures and only consist of surrogate keys, which are unique identifiers for the dimensions. This type of fact table is referred to as "factless" as it lacks any measurable data.

    Rate this question:

  • 43. 

    ---------------- is a dimension that does not have a dimension table that is stored in a fact table.

    Explanation
    A degenerate dimension is a dimension that does not have a separate dimension table and is instead stored directly in the fact table. This means that the dimension's attributes are stored alongside the measures in the fact table, eliminating the need for a separate dimension table. This can be useful when the dimension has a single attribute or when the attribute is highly correlated with the fact table.

    Rate this question:

  • 44. 

    ------------------ key is the primary key of a dimension table stored directly in fact table.

    Explanation
    The given correct answer is "surrogate". In a data warehouse, a surrogate key is a unique identifier assigned to a dimension table that is stored directly in the fact table. This surrogate key is used to establish relationships between the fact table and the dimension table. It provides a way to efficiently join and query data in the data warehouse. By using surrogate keys, the dimension table can be updated without affecting the fact table, ensuring data integrity and maintaining historical accuracy.

    Rate this question:

  • 45. 

    It is impossible to implement a type 2 dimension without a --------- key?

    Explanation
    A type 2 dimension is a dimension that tracks historical changes over time. In order to implement a type 2 dimension, a surrogate key is necessary. A surrogate key is a unique identifier assigned to each record in the dimension table. It is used to track changes and maintain historical data by creating a new record with a new surrogate key whenever a change occurs in the dimension. Without a surrogate key, it would be difficult to accurately track and manage the historical changes in a type 2 dimension.

    Rate this question:

  • 46. 

    ------------- fact table, orders, work requests, call records, etc.one row for each action.

    Explanation
    The given answer "transaction" is the correct answer because a transaction refers to a single unit of work or a series of actions that are treated as a single unit. In the context of the fact table, orders, work requests, call records, etc., each row represents a specific action or event, which can be considered as a transaction. Therefore, the fact table or other related tables would contain one row for each transaction or action that occurred.

    Rate this question:

  • 47. 

    --------------- snapshot, ex. inventory, count as a time period, one row for each item per time period.

    Explanation
    The term "periodic" refers to a system or process that occurs at regular intervals or time periods. In the given context, "periodic" suggests that the snapshot or inventory count is conducted periodically, with a specific time period designated for each count. This means that there will be one row of data for each item in the inventory for each time period in which the count is conducted.

    Rate this question:

  • 48. 

    ----------------- snapshot, lifecycle, one row for each lifecycle tracked.

    Explanation
    The term "accumulating" suggests that the given answer is referring to a process of gathering or collecting data over time. In this context, it implies that the system or application being discussed is tracking the lifecycle of something, such as a product or a project, and maintaining a record of each lifecycle event in a row. This could be useful for analyzing trends, monitoring progress, or generating reports based on the accumulated data.

    Rate this question:

  • 49. 

    -----------------  dimensions used to hold flags and other non related values, combine all these small values into a single dimension.

  • 50. 

    Information delivery have many types of ----------- like tourist, operators.

    Explanation
    The given answer "users" is correct because the sentence is discussing different types of information delivery, such as tourists and operators. In this context, users refer to the individuals or groups who utilize or benefit from these different types of information delivery.

    Rate this question:

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 21, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Dec 15, 2009
    Quiz Created by
    Bcorazza
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.