Quick Revision

GK One-Line Question & Answer

15541+ short questions with short answers, covering every category and sub-category on the site — no long articles to scroll through. Good for a fast recap before an exam, or a few minutes of daily practice.

DBMS → Functional Dependency 3

What are the correct features of a distributed database?
users see the data in one global schema.
click to copy
A major goal of the database system is to minimize the number of block transfers between the disk and memory. This is achieved by
buffer
click to copy
Which of the following scenarios leads to linear running time for a random search hit in a linear-probing hash table?
all keys hash to same index
click to copy

DBMS → SQL Basics 3

Each tablespace in an Oracle database consists of one or more files called
datafiles
click to copy
The subsystem responsible for the allocation of buffer space is called the
buffer manager
click to copy
Breadth First Search is used in
graphs
click to copy

DBMS → DDL Commands 3

Choose the RDBMS which supports full fledged client server application development
oracle 7.1
click to copy
In the buffer where there is no space for another block, the block can be inserted using
buffer replacement strategy
click to copy
A(n)                    can be used to preserve the integrity of a document or a message.
encrypted message
click to copy

DBMS → DML Commands 3

An audit trail                        
is the recorded history of operations performed on a file
click to copy
A block that is not allowed to be written back to disk is said to be                              
pinned
click to copy
The property (or set of properties) that uniquely defines each row in a table is called the:
primary key
click to copy

DBMS → Joins 2

Large collection of files are called
database
click to copy
In case the buffer manager do not write the blocks properly then the buffer manager uses
crash recovery system
click to copy

DBMS → Views 2

Which of these is not a feature of Hierarchical model?
child node can have any number of parent nodes
click to copy
The technique where the blocks which have been used are replaced is called
most recently used
click to copy

DBMS → Indexes 2

Which of these data models is an extension of the relational data model?
object-relational data model
click to copy
                                       frees the space occupied by a block as soon as the final tuple of that block has been processed.
toss immediate strategy
click to copy

DBMS → Transactions 2

The information about data in a database is called                
metadata
click to copy
Indices whose search key specifies an order different from the sequential order of the file are called                        indices.
all of the mentioned
click to copy

DBMS → Concurrency Control 2

A data dictionary is a special file that contains?
all of the mentioned
click to copy
An                          consists of a search-key value and pointers to one or more records with that value as their search-key value.
index entry
click to copy

DBMS → Deadlock 2

The DBMS acts as an interface between what two components of an enterprise-class database system?
database application and the database
click to copy
In a                clustering index, the index record contains the search-key value and a pointer to the first data record with that search-key value and the rest of the records will be in the sequential pointers.
dense
click to copy

DBMS → Database Security 2

Relational schemas and other metadata about relations are stored in a structure called the                          
data dictionary
click to copy
In a                      index, an index entry appears for only some of the search-key values.
dense
click to copy

DBMS → PL/SQL 2

                       is the collection of memory structures and Oracle background processes that operates against an Oracle database.
instance
click to copy
A search key containing more than one attribute is referred to as a                    search key.
composite
click to copy

DBMS → Introduction to DBMS 2

A                  is a logical grouping of database objects, usually to facilitate security, performance, or the availability of database objects such as tables and indexes.
tablespace
click to copy
In B+ tree the node which points to another node is called
internal node
click to copy

DBMS → Database Architecture 2

A tablespace is further broken down into
segments
click to copy
If h is any hashing function and is used to hash n keys in to a table of size m, where n<=m, the expected number of collisions involving a particular key x is :
less than 1
click to copy

DBMS → Data Models 2

                     is a contiguous group of
database
click to copy
A technique for direct search is
hashing
click to copy

DBMS → ER Model 2

                 is the smallest unit of allocation in an Oracle database.
database block
click to copy
Consider a hash table of size seven, with starting index zero, and a hash function (3x + 4)mod7. Assuming the hash table is initially empty, which of the following is the contents of the table when the sequence 1, 3, 8, 10 is inserted into the table using closed hashing? Note that ‘_’ denotes an empty location in the table.
1, 8, 10, _, _, _, 3
click to copy

DBMS → Relational Model 2

An Oracle                      is a set of tables and views that are used as a read-only reference about the database.
data dictionary
click to copy
Key value pairs is usually seen in
hash tables
click to copy

DBMS → Normalization 2

The                is that part of main memory available for storage of copies of disk blocks.
buffer
click to copy
What is the best definition of a collision in a hash table?
two entries are identical except for their keys
click to copy