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 storage
  1. Copy-on-write

  2. Redirect-on-write

  3. WAFL specific snapshot

  4. EXT2 snapshot technology

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

NetApp's WAFL file system implements a proprietary snapshot mechanism optimized for its Write Anywhere File Layout. While copy-on-write (A) is a general technique, NetApp snapshots specifically use WAFL's integrated snapshot technology. Option C is most specific to NetApp architecture.

Multiple choice technology storage
  1. Database

  2. Mail file

  3. Filesystem

  4. None of the above

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

A database organizes data into predefined tables, columns, and relationships, making it a structured data type. Filesystems and mail files are semi-structured or unstructured because they contain raw files, text, and attachments without a rigid relational schema.

Multiple choice technology
  1. daily

  2. Incremental data

  3. weekly

  4. decremental data

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

Change Data Capture (CDC) delivers incremental data - only the changes since the last capture. This approach is more efficient than full daily or weekly extracts, focusing on new or modified records.

Multiple choice technology
  1. Knowledge

  2. Data

  3. Wisdom

  4. Information

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

In the DIKW hierarchy (Data-Information-Knowledge-Wisdom), tools can store and manage data, information, and knowledge, but wisdom cannot be systematically stored or managed by tools. Wisdom involves applying knowledge with judgment, experience, and insight - it's uniquely human and contextual.

Multiple choice technology
  1. Wisdom - Information - Data - Knowledge

  2. Knowledge - Wisdom - Information - Data

  3. Data - Information - Knowledge - Wisdom

  4. Information - Data - Knowledge - Wisdom

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

The Knowledge Management hierarchy is Data (raw facts) → Information (data with context) → Knowledge (information with meaning/application) → Wisdom (ability to apply knowledge judiciously). This DIKW hierarchy represents increasing levels of understanding and value.

Multiple choice technology programming languages
  1. Querying of in-memory collections

  2. Abstraction layer of data sources

  3. Object and Collection Initializers

  4. Lambda expressions

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

LINQ enables querying in-memory collections (Lists, Arrays) using SQL-like syntax. It provides abstraction over different data sources (XML, SQL, Objects) with a unified query model. Object and Collection Initializers (new List{1,2,3}) simplify object creation. Lambda expressions enable inline predicate functions but are a language feature predating LINQ.

Multiple choice technology databases
  1. More detail about either Dimension/Measure

  2. More detail about Measure

  3. More detail about Dimension

  4. separate object for Time Dimension

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

A detail object in BusinessObjects provides additional, descriptive information associated with a specific dimension object, such as a person's phone number for a customer name dimension. It does not describe measures directly or serve as a dedicated time dimension object.

Multiple choice technology databases
  1. Table that contains data.

  2. Object of a Class

  3. Java program used in BO

  4. Query on Universes and Stored Procedures and Free-hand SQL

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

A Data Provider in BusinessObjects is a query built on a universe, a stored procedure, or free-hand SQL that retrieves data from a data source. It is not a database table itself, a Java program, or an object instance of a class.

Multiple choice technology databases
  1. True

  2. False

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

SAP BusinessObjects allows reports to be created using data from multiple databases by defining multiple data providers. This capability enables data blending from different sources, such as distinct relational databases or spreadsheets, in a single document. The statement is true because multi-source reporting is natively supported.

Multiple choice technology databases
  1. Standalone Repository and Global Repository

  2. Local Repository and Versioned Repository

  3. Neither A nor B

  4. Both A and B

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

Using the Informatica Repository Manager, administrators can manage and configure standalone, global, local, and versioned repositories. These options cover the repository types that can be created and administered within the PowerCenter suite, making both A and B the correct options.

Multiple choice technology databases
  1. Materialized Views

  2. Tables and Views

  3. Facts and Dimesions

  4. Logical database objects

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

Oracle Warehouse Builder is designed for building data warehouses using dimensional modeling principles. The core OLAP construct you design in OWB is the fact and dimension structure - facts contain quantitative measurements while dimensions provide descriptive context. While OWB can work with materialized views and tables, the fundamental OLAP design element is the fact/dimension schema.

Multiple choice technology databases
  1. Objects

  2. Mappings and mapping data

  3. Tables,Schema,Mapping

  4. Metadata definitions

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

Metadata definitions are stored in a repository as they contain schema information, structural constraints, and descriptive data about objects rather than the actual objects, mappings, or tables themselves. The distractors represent different types of data storage but not repository metadata.

Multiple choice technology databases
  1. Data about data

  2. Is a subset of a Dataware house

  3. Data collected from various sources

  4. All of the Above

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

A data mart is a specialized subset of a data warehouse designed for a particular business line or department, such as finance or sales. Metadata describes data about data, and the data warehouse itself aggregates data from various sources, making the other choices incorrect descriptions.