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 delivery
  1. Indexes

  2. Tables

  3. public synonyms

  4. triggers

  5. Packages

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

Public synonyms are not owned by any specific user schema - they exist in the database namespace and are available to all users. Private synonyms (like indexes, tables, triggers, packages) are schema objects owned by specific users. The distinction is that public synonyms lack a schema prefix in their naming convention.

Multiple choice technology packaged enterprise solutions
  1. Any set of rules

  2. The set of rules and data that comprise your application

  3. A related group of business rules

  4. no rules

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

A RuleSet in Pega is a related group of business rules that serve a specific purpose or business function. It's not just any set of rules, but a collection of logically related rules that comprise part of your application. RuleSets help organize, version, and deploy rules systematically. Option B is too broad (includes data), and Option D is incorrect.

Multiple choice technology packaged enterprise solutions
  1. Is any set of related work objects

  2. Causes the system to store the instances corresponding to two or more concrete classes that have a common key format in a single database table

  3. Is unrelated to your application’s Reporting requirements

  4. None of the above

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

Class table inheritance stores multiple related class types in a single database table using a common key format. Option B correctly describes this ORM pattern used for mapping inheritance hierarchies. The other options are incorrect distractors that don't relate to database inheritance strategies.

Multiple choice technology packaged enterprise solutions
  1. A MapValue

  2. A Decision Tree

  3. A Decision Table

  4. All of the above

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

A Decision Shape in Pega flows is versatile and can represent a MapValue, a Decision Tree, or a Decision Table depending on your needs. MapValues are for simple property-based decisions, Decision Trees handle complex if-then logic, and Decision Tables are for rule-based conditional logic. All three are valid configurations of a Decision Shape. Options A, B, and C are each individually correct, but incomplete.

Multiple choice technology web technology
  1. System Monitor (SMON)

  2. Process Monitor (PMON)

  3. Database Writer (DBWR)

  4. Log Writer (LGWR)

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

System Monitor (SMON) is the background process responsible for instance recovery in Oracle. When an Oracle instance fails (crash, power failure, etc.), SMON performs recovery on startup by rolling forward uncommitted changes from redo logs and rolling back uncommitted transactions. PMON handles process cleanup, DBWR writes data files, LGWR manages redo logs - none of these handle instance recovery.

Multiple choice technology databases
  1. Checkpoint (CKPT)

  2. Database Writer (DBWR)

  3. Process Monitor (PMON)

  4. Log Writer (LGWR)

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

Database Writer (DBWR) is responsible for writing modified data from the buffer cache to the actual datafiles on disk. This makes changes permanent and ensures durability. DBWR operates asynchronously and uses sophisticated algorithms to optimize write performance. CKPT coordinates checkpoints, PMON handles process cleanup, LGWR writes to redo logs - only DBWR writes to datafiles.

Multiple choice technology databases
  1. Database Buffer Cache

  2. Shared Pool

  3. Data Dictionary

  4. Redolog Group

  5. Redolog Buffer

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

The System Global Area (SGA) contains the Database Buffer Cache, Shared Pool, and Redo Log Buffer as its main memory structures. The Data Dictionary is cached within the Shared Pool (not a top-level component), and Redo Log Groups are physical files on disk.

Multiple choice technology databases
  1. Database

  2. Controlfile

  3. Table

  4. Datafile

  5. Index

  6. Redolog Group

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

Physical database components are the actual operating system files that store database data. Control files contain database metadata and structural information. Datafiles store the actual user data and database objects. Redo log groups contain transaction logs for recovery. Tables and Indexes are LOGICAL structures stored WITHIN these physical files - they're not physical components themselves.

Multiple choice technology databases
  1. Datafile

  2. Controlfile

  3. Redolog Group

  4. Archivelogs

  5. Password File

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

The control file is the physical component that stores metadata about the database structure, including datafile locations, tablespace details, checkpoint information, and the database layout itself. Datafiles store actual data, redolog groups store transactions for recovery, archivelogs are copies of redologs, and password files authenticate administrators.

Multiple choice technology databases
  1. Datafile

  2. Database

  3. Controlfile

  4. Table

  5. Schema

  6. Redolog Group

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

Logical components are conceptual structures that organize data: the Database is the overall container, Tables store structured data in rows and columns, and Schemas group related objects logically. Physical components like Datafiles, Controlfiles, and Redolog Groups are actual files on disk that implement these logical structures.

Multiple choice technology databases
  1. Relational Database Management System

  2. Rational Database Management System

  3. Real Database Management System

  4. Rapid Database Management System

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

RDBMS stands for Relational Database Management System, a type of database that organizes data into tables with relationships between them, using SQL for data manipulation. The other options (Rational, Real, Rapid) are not correct expansions.