Correct Answer: An organized collection of related data
Explanation:
A database stores related data in an organized form so that it can be accessed and managed efficiently.
Incorrect! Try again.
2In a relational database, what does a table usually represent?
Conceptual understanding of databases
Easy
A.A connection between two computers
B.A set of operating system commands
C.A collection of related records
D.A complete program for editing multimedia files
Correct Answer: A collection of related records
Explanation:
A table organizes related records into rows and columns.
Incorrect! Try again.
3What is a record in a database table?
Conceptual understanding of databases
Easy
A.A single row of related data
B.A collection of unrelated tables
C.A single column heading
D.A database login screen
Correct Answer: A single row of related data
Explanation:
A record is one row containing related values about a single item or entity.
Incorrect! Try again.
4Which system commonly uses a DBMS to store account and transaction information?
DBMS applications
Easy
A.Drawing system
B.Audio system
C.Banking system
D.Keyboard system
Correct Answer: Banking system
Explanation:
Banking systems use a DBMS to store and manage customer accounts and financial transactions.
Incorrect! Try again.
5How can a DBMS be used in a school?
DBMS applications
Easy
A.Replacing all classroom teaching with a fully automated global communication platform
B.Managing student records
C.Repairing damaged monitors
D.Increasing processor speed
Correct Answer: Managing student records
Explanation:
Schools use database systems to manage student details, attendance, grades, and course information.
Incorrect! Try again.
6Which DBMS application helps a hospital organize patient information?
DBMS applications
Easy
A.Patient record system
B.Computer cooling system
C.Network cable system
D.Image drawing system
Correct Answer: Patient record system
Explanation:
A patient record system stores and organizes details such as patient profiles, appointments, and treatments.
Incorrect! Try again.
7Which DBMS component interprets and executes database queries?
Components of DBMS
Easy
A.Display adapter
B.Network connector
C.Power supply
D.Query processor
Correct Answer: Query processor
Explanation:
The query processor interprets database queries and helps execute them.
Incorrect! Try again.
8Which DBMS component manages how data is stored and retrieved?
Components of DBMS
Easy
A.A manager responsible for designing every application interface and controlling external hardware devices
B.Storage manager
C.Window manager
D.Sound manager
Correct Answer: Storage manager
Explanation:
The storage manager controls the storage, retrieval, and updating of data in the database.
Incorrect! Try again.
9What does the data dictionary contain?
Components of DBMS
Easy
A.Passwords for operating systems
B.Metadata about database objects
C.Pictures used by applications
D.Instructions for assembling hardware
Correct Answer: Metadata about database objects
Explanation:
A data dictionary stores metadata, such as definitions of tables, columns, and constraints.
Incorrect! Try again.
10Who is primarily responsible for controlling access to a database?
Users and actors of DBMS
Easy
A.Graphic designer
B.Database administrator
C.Computer manufacturer
D.Network customer
Correct Answer: Database administrator
Explanation:
A database administrator manages permissions, security, backup, and the overall operation of a database.
Incorrect! Try again.
11Which DBMS actor writes programs that interact with a database?
Users and actors of DBMS
Easy
A.Hardware technician
B.Application programmer
C.A database administrator who exclusively manufactures storage devices and repairs physical network cables
D.Database end user
Correct Answer: Application programmer
Explanation:
An application programmer develops software that sends requests to and receives data from a DBMS.
Incorrect! Try again.
12Who uses a database application to perform routine tasks such as entering or viewing data?
Users and actors of DBMS
Easy
A.System compiler
B.Hardware vendor
C.Device driver
D.End user
Correct Answer: End user
Explanation:
An end user interacts with database applications to enter, search, update, or view information.
Incorrect! Try again.
13How many levels are present in the traditional three-schema DBMS architecture?
DBMS architecture
Easy
A.Two levels
B.Four levels
C.Five levels
D.Three levels
Correct Answer: Three levels
Explanation:
The three-schema architecture has external, conceptual, and internal levels.
Incorrect! Try again.
14Which level of the three-schema architecture describes how data is physically stored?
DBMS architecture
Easy
A.Conceptual level
B.External level
C.Application level
D.Internal level
Correct Answer: Internal level
Explanation:
The internal level describes physical storage structures and access methods.
Incorrect! Try again.
15Which level presents different database views to individual users?
DBMS architecture
Easy
A.A central level that directly specifies every disk location and storage mechanism for all users
B.Internal level
C.External level
D.Physical level
Correct Answer: External level
Explanation:
The external level provides user-specific views of the database.
Incorrect! Try again.
16What does the conceptual level describe?
DBMS architecture
Easy
A.The electrical design of storage hardware
B.The overall logical database structure
C.The physical placement of disk blocks
D.The personal view of one user
Correct Answer: The overall logical database structure
Explanation:
The conceptual level defines the overall logical organization of data and its relationships.
Incorrect! Try again.
17What is data independence?
Data independence
Easy
A.Copying every database table into a separate text document
B.Changing one schema level without greatly affecting higher levels
C.Keeping a database disconnected from every software application and computer network
D.Preventing all users from modifying stored information
Correct Answer: Changing one schema level without greatly affecting higher levels
Explanation:
Data independence allows changes at one schema level with minimal or no changes at higher levels.
Incorrect! Try again.
18What is a major benefit of data independence?
Data independence
Easy
A.Elimination of stored data
B.Automatic replacement of hardware
C.Removal of all database users
D.Reduced impact of database changes
Correct Answer: Reduced impact of database changes
Explanation:
Data independence reduces the need to modify applications when the database structure or storage changes.
Incorrect! Try again.
19Which type of data independence allows physical storage changes without changing the conceptual schema?
Types of data independence
Easy
A.Application data dependence
B.Physical data independence
C.External data dependence
D.Logical data independence
Correct Answer: Physical data independence
Explanation:
Physical data independence allows storage details, such as file organization, to change without altering the logical design.
Incorrect! Try again.
20Which type of data independence allows changes to the conceptual schema without changing user views or application programs?
Types of data independence
Easy
A.Logical data independence
B.Physical data independence
C.A physical storage process that changes disk organization while requiring every application to be rewritten
D.Storage data dependence
Correct Answer: Logical data independence
Explanation:
Logical data independence protects external views and applications from changes to the conceptual schema.
Incorrect! Try again.
21A college stores student addresses separately in admissions, library, and examination files. The address may therefore differ across departments. Which database concept most directly addresses this problem?
Conceptual understanding of databases
Medium
A.Encryption of confidential data
B.Compression of historical data
C.Centralized sharing of integrated data
D.Sorting of departmental files
Correct Answer: Centralized sharing of integrated data
Explanation:
An integrated database provides a shared version of data, reducing duplication and inconsistent updates.
Incorrect! Try again.
22In a relational database, a foreign key in an Orders table refers to a primary key in a Customers table. What is the main purpose of this relationship?
Conceptual understanding of databases
Medium
A.To sort orders automatically
B.To encrypt customer records
C.To maintain referential integrity
D.To duplicate customer details
Correct Answer: To maintain referential integrity
Explanation:
The foreign-key relationship ensures that each referenced customer exists in the Customers table.
Incorrect! Try again.
23Two employees try to reserve the last available conference room for the same time slot. What database capability is most important for preventing both reservations from being accepted?
Conceptual understanding of databases
Medium
A.Concurrency control
B.Schema visualization
C.Report formatting
D.Data compression
Correct Answer: Concurrency control
Explanation:
Concurrency control coordinates simultaneous operations so conflicting reservations cannot both commit.
Incorrect! Try again.
24A bank transfers money by debiting one account and crediting another. If the credit operation fails, the debit must also be undone. Which DBMS feature supports this requirement?
DBMS applications
Medium
A.View creation
B.Index maintenance
C.Transaction atomicity
D.Data sorting
Correct Answer: Transaction atomicity
Explanation:
Atomicity treats the transfer as one indivisible transaction: either both operations occur or neither occurs.
Incorrect! Try again.
25A hospital permits doctors to view medical histories but allows billing staff to view only payment details. Which DBMS application capability enables this arrangement?
DBMS applications
Medium
A.Automatic table replication
B.Sequential record processing
C.Role-based access control
D.A detailed export of every patient record to separate departmental text files
Correct Answer: Role-based access control
Explanation:
Role-based access control grants each group only the permissions needed for its responsibilities.
Incorrect! Try again.
26An online store must reduce product stock immediately after a successful purchase while supporting many simultaneous customers. Which type of workload best describes this application?
DBMS applications
Medium
A.Online transaction processing
B.Offline document publishing
C.Static website rendering
D.Batch image processing
Correct Answer: Online transaction processing
Explanation:
Online transaction processing handles frequent, concurrent, short transactions such as purchases and stock updates.
Incorrect! Try again.
27A SQL statement is checked, converted into an execution plan, and optimized before accessing data. Which DBMS component performs these tasks?
Components of DBMS
Medium
A.Data dictionary
B.Authorization table
C.Transaction log
D.Query processor
Correct Answer: Query processor
Explanation:
The query processor parses, validates, optimizes, and executes database queries.
Incorrect! Try again.
28Frequently accessed disk pages are retained temporarily in main memory to reduce input/output operations. Which component manages this activity?
Components of DBMS
Medium
A.Buffer manager
B.Report generator
C.Query parser
D.Schema compiler
Correct Answer: Buffer manager
Explanation:
The buffer manager moves pages between disk and memory and keeps useful pages available for reuse.
Incorrect! Try again.
29After a power failure, a DBMS uses recorded changes to restore committed transactions and undo incomplete ones. Which component supplies the required records?
Components of DBMS
Medium
A.View manager
B.Form designer
C.Query optimizer
D.Recovery manager
Correct Answer: Recovery manager
Explanation:
The recovery manager uses log information to redo committed work and undo incomplete transactions.
Incorrect! Try again.
30A developer needs to find the data type, constraints, and owner of a table without reading its rows. Which DBMS component should be consulted?
Components of DBMS
Medium
A.A full backup containing table rows, indexes, archived logs, and operating-system files
B.Data dictionary
C.Buffer pool
D.Transaction queue
Correct Answer: Data dictionary
Explanation:
The data dictionary stores metadata such as table definitions, constraints, ownership, and data types.
Incorrect! Try again.
31Who is primarily responsible for creating user accounts, granting privileges, planning backups, and monitoring database performance?
Users and actors of DBMS
Medium
A.Naive end user
B.Data entry operator
C.Database administrator
D.Application programmer
Correct Answer: Database administrator
Explanation:
The database administrator manages security, availability, backup, recovery, and overall database performance.
Incorrect! Try again.
32A specialist decides which entities, relationships, attributes, and constraints should represent a university's information requirements. Which role is being performed?
Users and actors of DBMS
Medium
A.Network technician
B.Parametric user
C.System operator
D.Database designer
Correct Answer: Database designer
Explanation:
A database designer translates information requirements into an appropriate database structure.
Incorrect! Try again.
33A bank teller repeatedly uses predefined forms to deposit and withdraw funds without writing SQL. How is this user best classified?
Users and actors of DBMS
Medium
A.Database designer
B.Database administrator
C.Stand-alone analyst
D.Parametric end user
Correct Answer: Parametric end user
Explanation:
Parametric end users repeatedly execute predefined transactions through forms or standard interfaces.
Incorrect! Try again.
34In the three-schema architecture, which level describes the complete logical structure of the database while hiding physical storage details?
DBMS architecture
Medium
A.Conceptual level
B.Internal level
C.Hardware level
D.External level
Correct Answer: Conceptual level
Explanation:
The conceptual level defines the database's overall logical entities, relationships, and constraints.
Incorrect! Try again.
35A reporting employee sees only EmployeeName and Department, although the database also stores salary and tax details. Which architectural level defines this restricted representation?
DBMS architecture
Medium
A.External level
B.Conceptual level
C.Internal level
D.The physical level that specifies disk blocks, indexes, partitions, and file placement
Correct Answer: External level
Explanation:
The external level provides user-specific views that expose only required parts of the database.
Incorrect! Try again.
36In a three-tier application, where is validation of business rules normally placed so that multiple client interfaces can reuse it?
DBMS architecture
Medium
A.Local device driver tier
B.Database storage tier
C.Client presentation tier
D.Application server tier
Correct Answer: Application server tier
Explanation:
The application server typically contains reusable business logic between clients and the database server.
Incorrect! Try again.
37A DBMS is said to provide data independence when developers can do what?
Data independence
Medium
A.Modify one schema level with minimal impact above it
B.Remove every relationship among stored tables
C.Store each application in its own isolated file collection to avoid schema mappings
D.Access all records without authorization checks
Correct Answer: Modify one schema level with minimal impact above it
Explanation:
Data independence limits the effect that changes at a lower schema level have on higher-level schemas and applications.
Incorrect! Try again.
38An administrator adds an index to CustomerID to improve search speed, but application queries remain unchanged. Which type of data independence does this demonstrate?
Types of data independence
Medium
A.Logical data independence
B.External data independence
C.Semantic data independence
D.Physical data independence
Correct Answer: Physical data independence
Explanation:
Adding an index changes physical storage and access methods without changing the logical schema.
Incorrect! Try again.
39A database designer adds DateOfBirth to the conceptual schema while existing user views and programs continue to work. Which type of data independence is demonstrated?
Types of data independence
Medium
A.Network data independence
B.Physical data independence
C.Logical data independence
D.Storage data dependence
Correct Answer: Logical data independence
Explanation:
Logical data independence allows conceptual-schema changes without requiring changes to existing external views or programs.
Incorrect! Try again.
40Which change is most likely to require logical data independence rather than physical data independence?
Types of data independence
Medium
A.Moving a table to a faster storage device
B.Splitting an Address attribute into several logical fields
C.Increasing the buffer cache and reorganizing disk pages to reduce physical input/output
D.Changing a file from unordered to hashed organization
Correct Answer: Splitting an Address attribute into several logical fields
Explanation:
Splitting an attribute changes the conceptual structure, so external views and applications must be protected through logical data independence.
Incorrect! Try again.
41A university changes every student's stored GPA after grades are finalized, but it does not alter any relation definitions, domains, or constraints. Which description is most accurate?
Conceptual understanding of databases
Hard
A.The database schema changes while the database state remains unchanged.
B.The database state changes while the database schema remains unchanged.
C.Both the database state and the database schema necessarily change.
D.Neither the database state nor the database schema changes.
Correct Answer: The database state changes while the database schema remains unchanged.
Explanation:
Stored tuples constitute the current database state. Updating their values changes that state, whereas the schema remains unchanged because its definitions and constraints were not modified.
Incorrect! Try again.
42A relation records (EmployeeID, ProjectID, Hours). An employee may work on several projects, but each employee-project pair must occur at most once. Which constraint best captures the required identity?
Conceptual understanding of databases
Hard
A.Hours should be combined with EmployeeID as a key.
B.ProjectID should be the sole primary key.
C.EmployeeID should be the sole primary key.
D.(EmployeeID, ProjectID) should form a composite key.
Correct Answer: (EmployeeID, ProjectID) should form a composite key.
Explanation:
Neither identifier alone uniquely identifies an assignment. Their combination uniquely identifies each employee-project association.
Incorrect! Try again.
43Two applications separately store a customer's address. Both files are internally valid, but one contains an old address. Which database concept is most directly violated?
Conceptual understanding of databases
Hard
A.Data isolation among concurrent transactions
B.Data abstraction across schema levels
C.Data consistency across representations
D.Data durability after transaction commit
Correct Answer: Data consistency across representations
Explanation:
Conflicting values for the same real-world fact create inconsistency. Centralized control and reduced redundancy help a DBMS prevent this anomaly.
Incorrect! Try again.
44A banking application debits one account and credits another. A failure occurs after the debit but before the credit. Which DBMS capability is essential to prevent a permanently incomplete transfer?
DBMS applications
Hard
A.Logical view definition
B.Physical record clustering
C.Atomic transaction processing
D.Semantic query optimization
Correct Answer: Atomic transaction processing
Explanation:
Atomicity guarantees that all operations in the transfer occur or none do. Recovery therefore rolls back the debit if the credit cannot complete.
Incorrect! Try again.
45An airline reservation system allows two agents to read the final available seat and then both confirm it. Which DBMS function should primarily prevent this outcome?
DBMS applications
Hard
A.Concurrency control enforcing isolation
B.View management enforcing abstraction
C.Index management enforcing efficient access
D.Backup management enforcing durability
Correct Answer: Concurrency control enforcing isolation
Explanation:
The outcome is a concurrent access anomaly. Suitable isolation or locking ensures that conflicting reservations cannot both commit for the same seat.
Incorrect! Try again.
46A hospital must let physicians see full clinical records while billing staff see only treatment codes and charges. Which DBMS feature most directly supports this requirement?
DBMS applications
Hard
A.Shared physical buffer pools
B.Role-controlled external views
C.Write-ahead recovery logs
D.Cost-based execution plans
Correct Answer: Role-controlled external views
Explanation:
External views can expose different subsets of the same database, while role-based authorization limits which users may access each view.
Incorrect! Try again.
47A SQL query is syntactically valid and produces the correct result, but its selected execution strategy performs repeated full-table scans despite available indexes. Which DBMS component is chiefly responsible?
Components of DBMS
Hard
A.Query optimizer
B.Catalog definition utility
C.Recovery manager
D.Authorization manager
Correct Answer: Query optimizer
Explanation:
The query optimizer evaluates alternative execution plans and selects access paths. Choosing scans instead of useful indexes is principally an optimization issue.
Incorrect! Try again.
48After a committed update, the system crashes before the modified data page reaches permanent storage. Which mechanism enables the DBMS to restore the committed value?
Components of DBMS
Hard
A.Statistics information in the catalog
B.Access information in the user view
C.Redo information in the transaction log
D.Parse information in the query tree
Correct Answer: Redo information in the transaction log
Explanation:
With write-ahead logging, committed changes can be redone from durable log records even if their data pages were not written before the crash.
Incorrect! Try again.
49The optimizer needs table cardinalities, available indexes, attribute domains, and access privileges. Which DBMS component centrally stores this metadata?
Components of DBMS
Hard
A.Transaction scheduler
B.Application interface
C.Buffer manager
D.System catalog
Correct Answer: System catalog
Explanation:
The system catalog, or data dictionary, stores schema definitions, statistics, indexes, constraints, and authorization metadata used by DBMS components.
Incorrect! Try again.
50A requested page is already present in main memory, but the DBMS reads it from disk again because it fails to recognize the cached copy. Which component has malfunctioned most directly?
Components of DBMS
Hard
A.DDL compiler
B.Log manager
C.Buffer manager
D.Query parser
Correct Answer: Buffer manager
Explanation:
The buffer manager tracks database pages held in memory and decides when pages must be fetched, retained, replaced, or written back.
Incorrect! Try again.
51An organization must decide entity structures, relationship cardinalities, and integrity constraints before application programs are implemented. Who is primarily responsible?
Users and actors of DBMS
Hard
A.Storage hardware operator
B.Parametric end user
C.Transaction entry clerk
D.Database designer
Correct Answer: Database designer
Explanation:
A database designer translates information requirements into conceptual and logical structures, including entities, relationships, keys, and constraints.
Incorrect! Try again.
52A bank teller repeatedly executes predefined deposit and withdrawal forms without writing SQL or modifying schemas. Which DBMS user category best fits this role?
Users and actors of DBMS
Hard
A.Database system implementer
B.Sophisticated end user
C.Database administrator
D.Parametric end user
Correct Answer: Parametric end user
Explanation:
Parametric users repeatedly run predefined, or canned, transactions through fixed application interfaces rather than formulating arbitrary database operations.
Incorrect! Try again.
53A production database requires privilege revocation, storage allocation, backup scheduling, and performance monitoring. Which actor should hold primary operational responsibility?
Users and actors of DBMS
Hard
A.Application programmer
B.Requirements analyst
C.Casual query user
D.Database administrator
Correct Answer: Database administrator
Explanation:
The DBA manages authorization, storage, backup and recovery policies, availability, and performance across the operational database.
Incorrect! Try again.
54A specialist identifies business workflows and determines what transactions a new inventory system must support, but does not define storage structures or write the final programs. Which role is the closest match?
Users and actors of DBMS
Hard
A.Parametric end user
B.DBMS engine developer
C.System analyst
D.Database administrator
Correct Answer: System analyst
Explanation:
A system analyst studies organizational requirements and specifies application behavior and transactions, bridging users' needs and technical implementation.
Incorrect! Try again.
55In the three-schema architecture, a user view continues exposing FullName after the conceptual schema replaces it with GivenName and FamilyName. Where should the reconstruction rule primarily be represented?
DBMS architecture
Hard
A.In the physical page directory
B.In the conceptual-internal mapping
C.In the transaction recovery log
D.In the external-conceptual mapping
Correct Answer: In the external-conceptual mapping
Explanation:
This mapping relates an external view to the conceptual schema. It can derive FullName from the new conceptual attributes without changing the user's view.
Incorrect! Try again.
56A desktop client sends requests to an application server, which enforces business rules and accesses the database server. The client has no direct database connection. Which architecture is described?
Correct Answer: The conceptual schema models global logical structure; the internal schema models physical storage.
Explanation:
The conceptual level describes the database's overall logical organization, while the internal level describes files, records, indexes, and other storage details.
Incorrect! Try again.
58A DBA replaces a table scan with a B-tree index and reorganizes records into different disk pages. No conceptual definitions or application queries change. What property is demonstrated?
Data independence
Hard
A.External schema integration
B.Logical data independence
C.Physical data independence
D.Transaction data isolation
Correct Answer: Physical data independence
Explanation:
Physical data independence allows storage structures and access paths to change without altering the conceptual schema or its applications.
Incorrect! Try again.
59A conceptual relation Employee(EmpID, Name, DeptName) is replaced by Employee(EmpID, Name, DeptID) and Department(DeptID, DeptName). Existing user views still present the original columns. Which type of independence is being exercised?
Types of data independence
Hard
A.Physical data independence
B.Logical data independence
C.Device-level independence
D.Transaction-level independence
Correct Answer: Logical data independence
Explanation:
The conceptual schema changed through decomposition, but external views were preserved. Insulating external schemas from conceptual changes is logical data independence.
Incorrect! Try again.
60Why is logical data independence generally harder to achieve than physical data independence?
Types of data independence
Hard
A.Physical changes cannot be hidden by conceptual-internal mappings.
B.External views directly control page placement and index organization.
C.Conceptual changes may alter meanings and structures visible to external views.
D.Logical changes always require replacing every physical storage device.
Correct Answer: Conceptual changes may alter meanings and structures visible to external views.
Explanation:
Conceptual modifications can affect entities, relationships, and attributes expected by applications. Physical modifications are usually hidden more readily behind the conceptual-internal mapping.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →