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 collection of related records
C.A complete program for editing multimedia files
D.A set of operating system commands
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 column heading
B.A collection of unrelated tables
C.A single row of related data
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.Keyboard system
C.Audio system
D.Banking 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.Increasing processor speed
C.Repairing damaged monitors
D.Managing student records
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.Image drawing system
B.Patient record system
C.Computer cooling system
D.Network cable 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.Query processor
B.Power supply
C.Network connector
D.Display adapter
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.Window manager
B.Sound manager
C.A manager responsible for designing every application interface and controlling external hardware devices
D.Storage 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.Instructions for assembling hardware
B.Metadata about database objects
C.Passwords for operating systems
D.Pictures used by applications
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.Computer manufacturer
B.Network customer
C.Database administrator
D.Graphic designer
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.Application programmer
B.Database end user
C.Hardware technician
D.A database administrator who exclusively manufactures storage devices and repairs physical network cables
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.Five levels
B.Three levels
C.Four levels
D.Two 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.Internal level
B.Application level
C.External level
D.Conceptual 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.Physical level
C.Internal level
D.External 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 physical placement of disk blocks
B.The electrical design of storage hardware
C.The personal view of one user
D.The overall logical database structure
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.Keeping a database disconnected from every software application and computer network
C.Changing one schema level without greatly affecting higher levels
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.Automatic replacement of hardware
B.Removal of all database users
C.Reduced impact of database changes
D.Elimination of stored data
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.Physical data independence
B.External data dependence
C.Application 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.A physical storage process that changes disk organization while requiring every application to be rewritten
C.Storage data dependence
D.Physical data independence
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.Compression of historical data
B.Encryption of confidential 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 maintain referential integrity
B.To duplicate customer details
C.To encrypt customer records
D.To sort orders automatically
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.Schema visualization
B.Report formatting
C.Concurrency control
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.Data sorting
B.Transaction atomicity
C.View creation
D.Index maintenance
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.Role-based access control
B.A detailed export of every patient record to separate departmental text files
C.Automatic table replication
D.Sequential record processing
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.Batch image processing
B.Static website rendering
C.Online transaction processing
D.Offline document publishing
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.Transaction log
B.Authorization table
C.Data dictionary
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.Form designer
B.Recovery manager
C.View manager
D.Query optimizer
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.Transaction queue
B.Buffer pool
C.A full backup containing table rows, indexes, archived logs, and operating-system files
D.Data dictionary
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.Database administrator
C.Application programmer
D.Data entry operator
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.Database designer
B.Network technician
C.System operator
D.Parametric user
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.Stand-alone analyst
C.Database administrator
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.Internal level
B.Hardware level
C.Conceptual 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.The physical level that specifies disk blocks, indexes, partitions, and file placement
B.Internal level
C.External level
D.Conceptual level
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.Application server tier
B.Database storage tier
C.Client presentation tier
D.Local device driver 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.Access all records without authorization checks
B.Modify one schema level with minimal impact above it
C.Store each application in its own isolated file collection to avoid schema mappings
D.Remove every relationship among stored tables
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.Semantic data independence
B.Physical data independence
C.Logical data independence
D.External 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.Increasing the buffer cache and reorganizing disk pages to reduce physical input/output
B.Splitting an Address attribute into several logical fields
C.Moving a table to a faster storage device
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.Neither the database state nor the database schema changes.
B.Both the database state and the database schema necessarily change.
C.The database schema changes while the database state remains unchanged.
D.The database state changes while the database schema remains unchanged.
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.(EmployeeID, ProjectID) should form a composite key.
C.EmployeeID should be the sole primary key.
D.ProjectID should be the sole primary 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 durability after transaction commit
D.Data consistency across representations
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.Physical record clustering
B.Atomic transaction processing
C.Semantic query optimization
D.Logical view definition
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.Index management enforcing efficient access
B.Concurrency control enforcing isolation
C.Backup management enforcing durability
D.View management enforcing abstraction
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.Write-ahead recovery logs
B.Role-controlled external views
C.Cost-based execution plans
D.Shared physical buffer pools
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.Catalog definition utility
B.Query optimizer
C.Authorization manager
D.Recovery 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.Redo information in the transaction log
B.Access information in the user view
C.Statistics information in the catalog
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.System catalog
B.Application interface
C.Transaction scheduler
D.Buffer manager
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.Buffer manager
B.Query parser
C.DDL compiler
D.Log manager
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.Transaction entry clerk
B.Storage hardware operator
C.Parametric end user
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.Parametric end user
B.Sophisticated end user
C.Database system implementer
D.Database administrator
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.Database administrator
B.Requirements analyst
C.Application programmer
D.Casual query user
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 external-conceptual mapping
B.In the conceptual-internal mapping
C.In the transaction recovery log
D.In the physical page directory
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?
D.The conceptual schema models global logical structure; the internal schema models physical storage.
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.Logical data independence
B.Physical data independence
C.Transaction data isolation
D.External schema integration
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.Device-level independence
B.Transaction-level independence
C.Physical data independence
D.Logical data 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.External views directly control page placement and index organization.
B.Physical changes cannot be hidden by conceptual-internal mappings.
C.Logical changes always require replacing every physical storage device.
D.Conceptual changes may alter meanings and structures visible to external views.
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 →