Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 148 pages
Exam (elaborations)

ICT 394 QUIZ SESSION 03 – ETL, OLTP, OLAP & MULTIDIMENSIONAL DATA QUESTIONS AND CORRECT ANSWERS – ICT 394 COMPLETE CHAPTERS / CONTENT

Document preview thumbnail
Preview 4 out of 148 pages

147 Data Warehousing & BI questions with verified answers – all rationales included! This is a complete exam bank covering ETL processes, OLTP vs OLAP systems, multidimensional data modeling, and data warehousing architectures for ICT 394. Every question comes with the correct answer PLUS detailed explanations so you actually understand the material – not just memorize. What's Inside: - All 147 questions and answers from the actual quiz session - Multiple choice format with 4 options per question - Correct answers highlighted and explained - Detailed rationales for every single question - Easy to search and study on any device What You'll Actually Learn: - Slowly Changing Dimensions (SCD Type 0, 1, 2, 3) - ETL Pipeline Design and Implementation - OLTP vs OLAP System Differences - Star Schema and Snowflake Schema Design - Fact Tables (Transactional, Periodic Snapshot, Accumulating Snapshot) - Dimension Tables and Surrogate Keys - Data Integration and Change Data Capture (CDC) - Query Performance Optimization and Indexing - Conformed Dimensions and Bus Architecture - Kimball vs Inmon Data Warehouse Methodologies - OLAP Operations (Drill-down, Roll-up, Slice, Dice, Pivot) - MDX Queries and Multidimensional Cubes Real Questions You'll See: Question: In a slowly changing dimension (SCD) Type 2 implementation for a 'Customer' dimension, what is the primary impact on a star schema when a customer changes their address? ️ Answer: A new row is inserted for the customer with a new surrogate key, and existing fact rows remain referencing the old surrogate key. Question: In a retail data warehouse, a fact table stores single line-item records for each sale transaction, including product, store, date, quantity, and amount. This fact table type is: ️ Answer: Transactional (transaction grain) Question: Which of the following best describes the relationship between the OSI model and the TCP/IP model in terms of protocol implementation? ️ Answer: The OSI model is a theoretical framework, while TCP/IP is a practical protocol suite that combines several OSI layers into fewer layers. Who This Is For: - You, if you're taking ICT 394 or similar data warehousing courses - You, if you have an exam coming up and you're stressed - You, if you want to study smarter, not harder Stop stressing. Start passing. Download this now and walk into your exam actually prepared.

Content preview

ICT 394 Quiz Session 03 - ETL, OLTP, OLAP &
Multidimensional Data Questions and Correct Answers |
myMurdoch Learning 2026 | 100% Score - 147 Questions and
Answers Already Graded A+ Premium Exam Tested And
Verified


Subject Area Data Warehousing and Business Intelligence

Description This exam assesses advanced knowledge of ETL processes, OLTP vs. OLAP
systems, multidimensional data modeling, and data warehousing architectures. It
covers topics such as star schemas, snowflake schemas, fact tables, dimension
tables, slowly changing dimensions, data integration, and query performance
optimization.

Expected Grade A+

Total Questions 147

Duration 3 hours

Learning Outcomes 1. Analyze and design ETL workflows for complex data integration scenarios.
2. Differentiate OLTP and OLAP systems and apply appropriate modeling
techniques.
3. Evaluate multidimensional data models using star and snowflake schemas.
4. Implement and manage slowly changing dimensions and fact table strategies.
5. Optimize query performance for OLAP workloads using indexing and
aggregation techniques.

Accreditation This exam adheres to the rigorous standards of top-tier US research universities
(Ivy League and R1 institutions) for undergraduate and graduate-level data
management courses.




Page 1

,Question 1 of 147
In a slowly changing dimension (SCD) Type 2 implementation for a 'Customer' dimension, what is
the primary impact on a star schema when a customer changes their address?
A. The existing fact rows referencing the old customer key are updated to point to the new customer surrogate
key.
B. A new row is inserted for the customer with a new surrogate key, and existing fact rows remain referencing the
old surrogate key.
C. The address attribute in the dimension row is overwritten, and a new surrogate key is assigned to the same
natural key.
D. The dimension table is normalized to a snowflake schema to avoid duplicate keys.


The correct answer is:
Correct Action: A new row is inserted for the customer with a new surrogate key, and existing fact rows
remain referencing the old surrogate key.

Rationales
• A new row is inserted for the customer with a new surrogate key, and existing fact rows remain referencing the
old surrogate key. (Correct):
This is the correct action. SCD Type 2 preserves history by inserting a new dimension row for the changed attribute with a
new surrogate key. Existing fact rows reference the old surrogate key, maintaining historical accuracy. Option A describes
SCD Type 1 (overwrite). Option C is incorrect because Type 2 inserts a new row, not overwrites. Option D describes
• The existing fact rows referencing the old customer key are updated to point to the new customer surrogate
key. (Incorrect):
This option is not appropriate. Existing fact rows reference the old surrogate key, maintaining historical accuracy. Option A
describes SCD Type 1 (overwrite)
• The address attribute in the dimension row is overwritten, and a new surrogate key is assigned to the same
natural key. (Incorrect):
This option is not appropriate. Existing fact rows reference the old surrogate key, maintaining historical accuracy. Option A
describes SCD Type 1 (overwrite)
• The dimension table is normalized to a snowflake schema to avoid duplicate keys. (Incorrect):
This option is not appropriate. Existing fact rows reference the old surrogate key, maintaining historical accuracy. Option A
describes SCD Type 1 (overwrite)




Page 2

,Question 2 of 147
A data warehouse fact table stores sales data with foreign keys to dimensions: Date, Product, Store,
and Customer. Which design would minimize the table's row count while maintaining the same
granularity?
A. Pre-join all dimensions into a single wide dimension table.
B. Use a degenerate dimension for attributes like transaction ID.
C. Partition the fact table by month using range partitioning.
D. Convert the fact table to a snowflake schema with normalized dimensions.


The correct answer is:
Correct Action: Use a degenerate dimension for attributes like transaction ID.

Rationales
• Use a degenerate dimension for attributes like transaction ID. (Correct):
This is the correct action. A degenerate dimension is a dimension key stored in the fact table without a corresponding
dimension table, often used for transactional identifiers. This reduces the number of dimension tables but does not change
row count. Pre-joining dimensions would not reduce rows. Partitioning changes physical storage but not row count.
• Pre-join all dimensions into a single wide dimension table. (Incorrect):
This option is not appropriate. This reduces the number of dimension tables but does not change row count. Pre-joining
dimensions would not reduce rows
• Partition the fact table by month using range partitioning. (Incorrect):
This option is not appropriate. This reduces the number of dimension tables but does not change row count. Pre-joining
dimensions would not reduce rows
• Convert the fact table to a snowflake schema with normalized dimensions. (Incorrect):
This option is not appropriate. This reduces the number of dimension tables but does not change row count. Pre-joining
dimensions would not reduce rows




Page 3

, Question 3 of 147
During the ETL process for a data warehouse, a source system transaction table contains a
timestamp column with time zone information. The warehouse requires all timestamps to be in UTC.
Which transformation step is most appropriate to ensure consistency?
A. Apply a time zone offset conversion in the extraction phase before any staging.
B. Store the original timestamp and offset in a separate column and convert only during query execution.
C. Convert the timestamp to UTC during the transformation phase after staging but before loading into the
warehouse.
D. Ignore time zones and assume all source systems are already in UTC.


The correct answer is:
Correct Action: Convert the timestamp to UTC during the transformation phase after staging but before
loading into the warehouse.

Rationales
• Convert the timestamp to UTC during the transformation phase after staging but before loading into the
warehouse. (Correct):
This is the correct action. Converting to UTC during the transformation phase ensures that all data loaded into the
warehouse is consistent and ready for analysis. Extraction should be as raw as possible. Storing with offset adds complexity
and requires runtime conversion. Ignoring time zones can lead to errors if sources are in different zones.
• Apply a time zone offset conversion in the extraction phase before any staging. (Incorrect):
This option is not appropriate. Extraction should be as raw as possible. Storing with offset adds complexity and requires
runtime conversion
• Store the original timestamp and offset in a separate column and convert only during query execution.
(Incorrect):
This option is not appropriate. Extraction should be as raw as possible. Storing with offset adds complexity and requires
runtime conversion
• Ignore time zones and assume all source systems are already in UTC. (Incorrect):
This option is not appropriate. Extraction should be as raw as possible. Storing with offset adds complexity and requires
runtime conversion




Page 4

Document information

Uploaded on
August 4, 2026
Number of pages
148
Written in
2026/2027
Type
Exam (elaborations)
Contains
Questions & answers
$13.79

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
GlobalExamBank
4.7
(3)
Sold
13
Followers
1
Items
514
Last sold
1 month ago




Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions