Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 4 fuera de 148 páginas
Examen

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

Document preview thumbnail
Vista previa 4 fuera de 148 páginas

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.

Vista previa del contenido

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

Información del documento

Subido en
4 de agosto de 2026
Número de páginas
148
Escrito en
2026/2027
Tipo
Examen
Contiene
Preguntas y respuestas
$13.79

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
GlobalExamBank
4.7
(3)
Vendido
13
Seguidores
1
Artículos
514
Última venta
1 mes hace




Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes