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 databases
  1. OS requirement

  2. User analysis

  3. Performance monitoring

  4. Data dictionary specification

  5. System requirement

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

Performance monitoring is an ongoing operational activity in database administration, continuously tracking query performance, resource usage, and system health. The other options are one-time setup or design activities.

Multiple choice technology databases
  1. Data about data

  2. Describes a data dictionary

  3. Self-describing

  4. Includes user data

  5. Supports its own structure

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

Metadata is data about data - it describes the structure, schema, and data dictionary but does not include actual user data values. Options A, B, C, and E all describe legitimate characteristics of metadata.

Multiple choice technology databases
  1. Encryption key management

  2. Graphical User Interface Widgets

  3. Thread creation, execution, & coordination

  4. Network socket creation/operation

  5. If/Then, for, do/while statements

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

RDBMS procedural SQL extensions (PL/SQL, T-SQL) add programming constructs like conditionals and loops for procedural logic. Encryption, GUI widgets, threading, and network sockets are systems-level features outside SQL scope.

Multiple choice technology databases
  1. More entities are needed.

  2. The model should be denormalized.

  3. The tables are not properly indexed.

  4. The model cannot be implemented physically.

  5. More attributes are needed.

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

A mandatory 1:1 relationship often indicates insufficient attribute analysis - additional attributes may reveal why entities are separate or show they should be merged. This is a modeling smell suggesting incomplete analysis.

Multiple choice technology web technology
  1. ARPAnet.

  2. input area on a web page.

  3. method used to keep web pages formatted correctly.

  4. an interent activity that involves synthesis of information.

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

HTML tables are used to organize and display data in rows and columns, helping maintain proper formatting and structure on web pages. They were historically also misused for page layout before CSS became widely adopted. Option C describes this formatting purpose, though somewhat vaguely.

Multiple choice technology
  1. 99user.ldif

  2. dse.ldif

  3. db2ldif

  4. des.ldif

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

The dse.ldif file contains indexes for attributes in a Directory Server. LDIF (LDAP Data Interchange Format) files are used to store directory data, and dse.ldif specifically holds the backend configuration including attribute indexes that optimize search and lookup operations. Option A (99user.ldif) is typically for user-specific customizations, while options C and D are not standard LDIF configuration files for this purpose.

Multiple choice technology platforms and products
  1. Data Validation

  2. Data Mining

  3. Report Generation

  4. Data Modeling

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

ETL lifecycle specifically includes Data Validation as a core task type. Data Mining, Report Generation, and Data Modeling are separate activities that occur outside the ETL lifecycle - Data Mining is analysis, Report Generation is downstream BI, and Data Modeling is a design phase activity.

Multiple choice technology platforms and products
  1. True

  2. False

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

A single Source qualifier transformation cannot pull data from multiple databases - it can only connect to one source at a time. To combine data from multiple databases, you would need multiple source qualifiers joined together using a Joiner transformation. This is a fundamental architectural constraint in ETL tools.

Multiple choice technology platforms and products
  1. the capability to access data from any source, regardless of format or system

  2. The ability to access data without proper authorization

  3. The ability to store data in one source without it being accessible to other systems

  4. The ability to manipulate data remotely

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

Enterprise Information Integration (EII) is fundamentally about the capability to access data from any source regardless of format or system - it provides unified access to heterogeneous data sources. The other options either describe unauthorized access (B), data silos (C), or remote manipulation (D), which are not the core purpose of EII.

Multiple choice technology platforms and products
  1. High performance decision support environments

  2. Master Data Management hubs

  3. Online Transaction processing

  4. All the above

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

ETL is fundamental to data warehousing and decision support systems, making it essential for high-performance decision support environments and Master Data Management hubs. It is not designed for OLTP systems, which require real-time transaction processing rather than batch-oriented extraction, transformation, and loading.

Multiple choice technology
  1. Refers to skills, processes, technologies, applications and practices used to support - decision making

  2. Is the creation of architecture for a Decision Support System

  3. Provides historical, current, and predictive views of business operations

  4. All of the above

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

Business Intelligence encompasses all these aspects: the skills and technologies for decision-making (A), the architecture for decision support systems (B), and providing multi-temporal views of business operations (C). BI is a comprehensive discipline that integrates all these elements to support data-driven decision making.

Multiple choice technology
  1. Subject- oriented, integrated, time variant (temporal) and volatile

  2. Transaction - oriented, integrated, time variant (temporal) and non-volatile

  3. Subject- oriented, integrated, non time variant (temporal) and volatile

  4. Subject- oriented, integrated, time variant (temporal) and non-volatile

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

A data warehouse has four key characteristics: it is subject-oriented (organized by major subject areas), integrated (consistent data standards), time-variant/temporal (captures historical changes over time), and non-volatile (data is read-only, not updated or deleted). Option D correctly lists all four properties.