Computer Knowledge

Database Management Systems

5,543 Questions

Database Management Systems (DBMS) form the core framework for data storage, retrieval, and security in modern software applications. Concepts such as the E-R model, backup planning, SQL integration, and big data architecture are essential for computer knowledge sections. This hub offers a comprehensive set of practice questions to master DBMS fundamentals and advanced database operations.

E-R Model ConceptsBackup and RecoverySQL Server UpgradesJDBC and ODBCBig Data CharacteristicsData VirtualizationOracle Database

Database Management Systems Questions

Multiple choice technology web technology
  1. A system that is used to run the business in real time and is based on historical data.

  2. A system that is used to run the business in real time and is based on current data.

  3. A system that is used to support decision making and is based on current data.

  4. A system that is used to support decision making and is based on historical data

Reveal answer Fill a bubble to check yourself
C Correct answer
Multiple choice technology web technology
  1. Many-to-many

  2. One-to-one

  3. One-to-many

  4. All of the above.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In a star schema, each dimension table connects to the fact table with a one-to-many relationship: one dimension row (like one product) relates to many fact rows (many transactions). Fact tables contain foreign keys referencing dimension tables, enabling this hierarchical structure. Many-to-many requires a bridge table, one-to-one is rare in dimensional modeling.

Multiple choice technology web technology
  1. data enrichment

  2. data caving

  3. data refinement

  4. data profiling

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

To solve this question, the user needs to have knowledge about data management and its various practices. The user must be able to identify the practice that best describes the characteristics of data content, quality, and structure.

Now, let's go through each option and explain why it is right or wrong:

A. Data enrichment: This practice involves enhancing data with additional information from external sources. It is not related to characterizing the content, quality, and structure of your data. Therefore, this option is incorrect.

B. Data caving: This practice refers to the process of creating and exploring data caves, which are virtual spaces where data can be analyzed and visualized. It is not related to characterizing the content, quality, and structure of your data. Therefore, this option is incorrect.

C. Data refinement: This practice involves improving the quality of data by removing errors, inconsistencies, and redundancies. Although it is related to data quality, it does not address the characterization of data content and structure. Therefore, this option is incorrect.

D. Data profiling: This practice involves analyzing data to understand its content, quality, and structure. It helps to identify potential issues with the data and to establish rules for data integration, transformation, and cleansing. Therefore, this option is the correct answer.

The Answer is: D

Multiple choice technology web technology
  1. data eradication

  2. data cleansing

  3. data unloading

  4. data purging

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Data cleansing is the process of detecting and correcting (or removing) corrupt, inaccurate, or irrelevant records from a database. It involves identifying incomplete, incorrect, or outdated data and either fixing it or deleting it. 'Data eradication' and 'data purging' are not standard terms for this process.

Multiple choice technology web technology
  1. Metadata

  2. Master data

  3. Data Governance

  4. Data Quality

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Metadata provides context and meaning to raw data, describing its structure, origin, relationships, and business definitions. It acts as a semantic layer that helps business users understand technical data structures without needing IT expertise. Master data is actual business data, governance is management practices, and quality is about accuracy.

Multiple choice technology web technology
  1. Source layer

  2. Report Layer

  3. Data Warehouse

  4. All of the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Metadata management is essential across all layers: source systems need metadata for lineage and transformation logic, the data warehouse requires structural and business metadata, and report layers need metadata for understanding report definitions and calculations. Centralized metadata spans the entire information chain.

Multiple choice technology web technology
  1. Distributed

  2. Federated

  3. Centralized

  4. Not possible to implement Metadata

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Distributed metadata management allows each ETL and reporting tool to maintain its own metadata repository, with some coordination. This is recommended for enterprises with multiple tools from different vendors. Centralized metadata is ideal but difficult with heterogeneous tools; federated implies a central coordinating hub.

Multiple choice technology web technology
  1. Enterprise report

  2. OLAP reports

  3. GIS

  4. Scorecards

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Enterprise reports (standard, parameterized reports) are designed for all user levels from executives to operational staff. OLAP reports require multidimensional analysis skills, GIS (Geographic Information Systems) needs spatial analysis expertise, and scorecards are typically strategic performance management tools for managers.

Multiple choice technology web technology
  1. Multidimensional data.

  2. Pre-calculated data.

  3. Nested data.

  4. Slow data retrieval.

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Aggregation pre-calculates summary data (sums, averages, counts) at different dimensional levels, storing these results for faster query performance. OLAP systems rely heavily on pre-aggregated data to avoid computing summaries on the fly for each query. This enables fast response times for analytical queries.

Multiple choice technology web technology
  1. Dicing

  2. Slicing

  3. Rotating

  4. Nesting

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Rotating (or pivot) in OLAP changes the dimensional orientation of the report, essentially pivoting the cube to view data from a different perspective. Slicing selects one dimension value, dicing creates a sub-cube by selecting specific values from multiple dimensions, and nesting embeds one hierarchy within another.

Multiple choice technology web technology
  1. Master data management

  2. Data Quality Management

  3. Metadata Management

  4. Data Security Management

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Master Data Management (MDM) is specifically designed to create and maintain a single, consistent view of an organization's critical data entities (like customers, products, suppliers) across all systems and applications. Data Quality Management focuses on improving data accuracy, Metadata Management manages data about data, and Data Security Management protects data access - none of these specifically create unified reference views.

Multiple choice technology web technology
  1. ETL

  2. ELT

  3. ELTL

  4. EII

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

ETL (Extract, Transform, Load) is recommended for large data volumes with low quality because transformation happens before loading, allowing early error detection and correction. ELT loads raw data first then transforms it, which is better for cloud environments with good data quality. ELTL is not a standard pattern. EII (Enterprise Information Integration) provides virtual views without physical data movement.

Multiple choice technology web technology
  1. Consolidation

  2. Registry

  3. Coexistence

  4. Transaction

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Registry style MDM maintains a centralized index or registry of master data without physically consolidating all records. This allows real-time access to reference data across systems. Consolidation physically merges data, Coexistence maintains separate copies with synchronization, and Transaction style supports real-time transactions but doesn't provide centralized reference in the same way.