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 → Introduction to DBMS 33

Data redundancy refers to
Duplication of same data in multiple places
click to copy
Which level of abstraction describes HOW data is physically stored?
Physical level
click to copy
Which level of abstraction describes WHAT data is stored?
Logical level
click to copy
Which abstraction level provides customized views to end users?
View level
click to copy
The overall design of the database is called
Schema
click to copy
The collection of information stored at a particular moment is called
Instance
click to copy
Physical data independence means
Application programs do not depend on the physical schema
click to copy
A procedural DML requires the user to specify
What data is needed and HOW to get it
click to copy
A declarative DML requires the user to specify
Only what data is needed (not how)
click to copy
The DDL output is stored in
Data dictionary
click to copy
Which storage manager component fetches data from disk to memory?
Buffer manager
click to copy
Which type of user writes application programs?
Application programmers
click to copy
OLAP tools help which type of user?
Analysts/Sophisticated users
click to copy
In two-tier architecture, the application resides at
The client machine
click to copy
The DML compiler performs
Query optimization and generates evaluation plans
click to copy
Which is a disadvantage of DBMS?
Complexity and large memory usage
click to copy
An active data dictionary is updated
Automatically by DBMS with every database access
click to copy
A weak entity is one that
Depends on another entity and has no key attribute of its own
click to copy
A derived attribute is one that
Can be calculated from other attributes
click to copy
A multi-valued attribute can take
More than one value per entity instance
click to copy
The degree of a relationship is
Number of entity types involved
click to copy
In total participation every entity instance
Participates in the relationship
click to copy
A superkey is
A set of one or more attributes uniquely identifying a tuple
click to copy
A minimal superkey is called
Candidate key
click to copy
Referential integrity requires
Foreign key values to match existing primary key values in referenced relation
click to copy
NULL in a database represents
Unknown or non-existent value
click to copy
Which SQL language specifies the database schema?
DDL
click to copy
A schema diagram shows
Database schema with PK and FK dependencies
click to copy
Which storage manager component handles integrity constraints?
Authorization and integrity manager
click to copy
An attribute referencing PK of another relation is called
Foreign key
click to copy
Domain of an attribute is
Set of all possible valid values for that attribute
click to copy
Integrity constraints include
Domain, key, entity integrity, and referential integrity constraints
click to copy
Entity integrity constraint states
Primary key attributes must NOT be NULL
click to copy

DBMS → Relational Model 2

The relational model represents data using
Tables (Relations)
click to copy
A candidate key chosen as principal identifier is
Primary key
click to copy

DBMS → Data Models 1

Which data model uses entities and relationships?
Entity-Relationship Model
click to copy

DBMS → Transactions 2

A transaction is defined as
A collection of operations performing a single logical function
click to copy
The transaction manager ensures
Database remains in consistent state despite failures and manages concurrent transactions
click to copy

DBMS → ER Model 1

ER modeling is classified as which design approach?
Top-down approach
click to copy

DBMS → Database Security 1

Read authorization allows a user to
Only read data, not modify
click to copy