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. None

  2. Record

  3. Record Structure

  4. Record Occurence

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

A collection of data items with real-life values is called both a Record and a Record Occurrence - these terms refer to the same concept of an actual data instance. A Record Occurrence is a concrete instance of a Record Type, populated with specific real-world data values. Both B and D are correct answers as they describe this fundamental database concept - the actual data instance as opposed to the structure definition.

Multiple choice technology databases
  1. Data Item

  2. Record Occurence

  3. Record

  4. Record Type

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

The structure of a record in the database is called the Record Type. Record Type defines the blueprint or schema that specifies what fields (data items) the record contains, their data types, and how they are organized. This is different from a Record Occurrence (actual data instance) or Data Item (individual field). The Record Type is the structural definition that all record instances follow.

Multiple choice technology databases
  1. Areas

  2. Record Occurence

  3. Record Type

  4. Data Item

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

Pages in Pega contain Record Occurrences, which are actual instances of data with specific values. In Pega's clipboard architecture, a page is a data structure that holds property-value pairs, essentially representing a record occurrence - the concrete data instance rather than just the type definition or individual data items. Pages are the runtime containers for actual data instances used during flow processing.

Multiple choice technology web technology
  1. Collection of WorkGroups

  2. Collection of similar Work Objects

  3. Collection of ClassGroup

  4. None of the above

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

A WorkPool in PRPC is a collection of similar Work Objects that can be processed together, often for routing and reporting purposes. It's not a collection of WorkGroups (A) or ClassGroups (C). WorkPools group business objects by type or category.

Multiple choice technology web technology
  1. (<INSERT>) (<NEXT>) (<END>)

  2. (<PREPEND>) (<NEXT>) (<END>)

  3. (<APPEND>) (<NEXT>) (<END>)

  4. (<APPEND>) (<INSERT>) (<PREPEND>)

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

Aggregate properties (Page Lists and Page Groups) use three index keywords in activities: () adds to the end, () adds at a specific position, and () adds at the beginning. Options A, B, and C are missing one of these three or include incorrect keywords like () or ().

Multiple choice technology databases
  1. Indexes

  2. tables

  3. public synonyms

  4. triggers

  5. packages

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

In Oracle databases, schema objects are owned by a specific database user. Tables, indexes, triggers, and packages reside within a user's schema. A public synonym, however, is a database-wide alias that does not belong to any individual schema, making it a non-schema object.

Multiple choice technology databases
  1. The tablespace must be online

  2. The tablespace must not contain any active rollback segments

  3. he tablespace must not be involved in an open backup

  4. All of the above

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

Before making a tablespace read-only, it must be online (not offline), cannot contain active rollback segments, and must not be in an open backup state. These are prerequisite conditions enforced by Oracle to ensure data consistency and recoverability. All three conditions must be satisfied.

Multiple choice technology databases
  1. The Default tablespace

  2. The temp tablespace

  3. The SYSTEM tablespace

  4. None of the above

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

When an Oracle database is created, the SYSTEM tablespace is automatically created first. This tablespace contains the data dictionary and essential database metadata. The SYSTEM tablespace is always present and required for database operation, while other tablespaces like temporary tablespaces are created separately or as needed.

Multiple choice technology mainframe
  1. MQGETS

  2. MQGETD

  3. MQGETM

  4. MQGET

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

In certain message queuing and database contexts, MQGETD is designed as a destructive get operation that retrieves and deletes records from a queue while routing them to a backup. Standard MQGET simply retrieves messages, while MQGETS and MQGETM do not perform this specific combined backup and deletion task.