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
-
Data redundancy
-
Data integrity
-
Data reliability
-
Data consistency
-
Data files
-
Redo log files
-
Control files
-
None of these
C
Correct answer
Explanation
Control files record the physical structure of a database.
-
Oracle database
-
Oracle instance
-
Oracle server
-
None of these
A
Correct answer
Explanation
Oracle database is a centralized repository of organizational data.
-
Database triggers
-
Cursors
-
Package
-
None of these
C
Correct answer
Explanation
A package is a database object that groups logically related PL/SQL types, objects, and subprograms.
-
Private SQL area
-
Session memory
-
SQL work area
-
None of these
C
Correct answer
Explanation
SQL work area is a memory area used for operations such as Sorting, Hash-joins, Bitmap Merge and Bitmap create operations.
-
Dedicated server mode
-
Shared server mode
-
Background processes
-
None of these
A
Correct answer
Explanation
The dedicated server mode maintains one-to-one ratio between user and server processes.
-
Database block
-
Schema
-
Extent
-
None of these
B
Correct answer
Explanation
Schema is a logical structure that can classify or group database objects.
-
Tablespace
-
Segment
-
Extent
-
None of these
A
Correct answer
Explanation
Tablespace is a logical grouping of database objects, usually to facilitate security, performance and the availability of database objects such as tables and indexes.
-
Database buffer cache
-
Redo log buffer
-
Library cache
-
None of these
B
Correct answer
Explanation
Redo log buffer is a circular buffer that stores all changes made in the database.
-
A set of values
-
A processed data
-
A collection of record
-
None of these
B
Correct answer
Explanation
In information technology, information is defined as data that has been processed, organized, or structured to make it meaningful and useful.
C
Correct answer
Explanation
Data is defined as raw facts, values, or a set of values that have not yet been processed or contextualized.
-
A collection of similar entities
-
A collection of related records
-
A collection of related items
-
None of these
C
Correct answer
Explanation
A record in a database or data structure is a collection of related data items (fields) that represent a single entity.
-
key
-
information
-
data time
-
record
A
Correct answer
Explanation
A key is a specific field in a record that uniquely identifies that record, allowing it to be distinguished from others in a database.
-
A collection of record which can be ordered or unordered.
-
A collection of data type which can be ordered or unordered.
-
A collection of different values.
-
A collection of elements which can be ordered or unordered.
D
Correct answer
Explanation
A list is a general data structure representing a collection of elements that can be ordered or unordered. The other options are too specific or incorrectly define the scope of a list.
-
primitive data type
-
polymorphic data type
-
abstract data type
-
none of these
C
Correct answer
Explanation
An abstract data type (ADT) is defined by its behavior (operations) rather than its implementation. This separation of concerns is the core principle of ADTs.