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
A
Correct answer
Explanation
A data item (also known as a field) is the smallest logical unit of data in a database, representing a specific attribute or property of a record.
-
None
-
Record
-
Record Structure
-
Record Occurence
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.
-
Data Item
-
Record Occurence
-
Record
-
Record Type
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.
-
Areas
-
Record Occurence
-
Record Type
-
Data Item
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.
-
tjmr tdq trnx-name
-
trjm tdq trnx-name
-
tmrj tdq trnx-name
-
tjrm tdq trnx-name
-
All the above
-
Collection of WorkGroups
-
Collection of similar Work Objects
-
Collection of ClassGroup
-
None of the above
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.
-
(<INSERT>) (<NEXT>) (<END>)
-
(<PREPEND>) (<NEXT>) (<END>)
-
(<APPEND>) (<NEXT>) (<END>)
-
(<APPEND>) (<INSERT>) (<PREPEND>)
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 ().
-
One-to-one
-
Many-to-one
-
One-to-many
-
Many-to-many
D
Correct answer
Explanation
In Pega, folders and their contents have a many-to-many relationship. A single folder can contain multiple work items (cases), and a single work item can belong to multiple folders simultaneously, allowing flexible grouping.
-
Indexes
-
tables
-
public synonyms
-
triggers
-
packages
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.
-
The tablespace must be online
-
The tablespace must not contain any active rollback segments
-
he tablespace must not be involved in an open backup
-
All of the above
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.
-
The Default tablespace
-
The temp tablespace
-
The SYSTEM tablespace
-
None of the above
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.
-
CICS
-
DB2
-
MVS
-
All of the above
D
Correct answer
Explanation
Omegamon is a comprehensive monitoring tool for IBM mainframes that can monitor CICS (transaction processing), DB2 (database), and MVS (operating system) resources among others, making 'All of the above' correct.
-
MQGETS
-
MQGETD
-
MQGETM
-
MQGET
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.