Site MapHelpFeedbackMultiple Choice Quiz
Multiple Choice Quiz
(See related pages)



1

Which of the following statements best describes what is meant by persistent data?
A)Data that only exists while a program is running.
B)Data in objects that keep trying to save themselves to disk storage.
C)Data that must be stored after a program stops running and be available to other users.
2

Which of the following kinds of objects are typically used in an object-oriented system?
A)Persistent objects only.
B)Transient objects only.
C)Both persistent and transient objects.
3

Which of the following is an example of a persistent object?
A)A Client object in the Agate system.
B)A ClientBroker object in the Agate system.
C)A ClientProxy object in the Agate system.
4

Which of the following statements best describes how a database stores data?
A)Relational databases store data in tables, and each table is a file.
B)Databases provide a layer of abstraction between the way that data is presented to the user and the way that it is stored in files.
C)Object databases store data in objects, and each object is a file.
5

Which of the following types of record structure is used in an XML file?
A)Fixed length.
B)Tagged.
C)Header and detail.
6

Which of the following best describes a variable length record structure?
A)Each record is made up of a number of fields, each of which has a fixed length in bytes. If the data in a field does not fill that many bytes, it is padded with a special character, usually null or space.
B)Each record is made up of a number of fields, each of which may have a maximum length but has a minimum length of zero bytes. Either fields are separated by special delimiter characters or the length of each field is held in the record structure.
C)Each record is tagged with a name in special characters. The end of the field is usually marked as well. Fields can contain other fields in complex nested structures.
7

Which of the following best describes serial file organization?
A)Each record is written onto the end of the file. If a record is to be deleted, the file must be copied from the start to the deleted record, which is skipped, and written back to disk.
B)Each record is written to file in a predetermined order, usually based on a key field. Records must be added in the right place in the file.
C)Each record is located in the file by means of an algorithm that converts a key field into a position in the file.
8

Which of the following best describes index-sequential file access?
A)Records are stored in blocks. The key of the record is used to calculate which block to store the data in, either using relative addressing or using a hashing algorithm.
B)Records are stored in blocks. The key of the record is used to determine which block to store a record in. A block index is maintained, which lists the keys of the last record in each block.
C)Records are stored in blocks. Records are written into blocks in the order in which they are created. If there are too many records for the number of blocks, then the excess records are held in overflow blocks.
9

Which of the following kinds of file would be used to store system settings?
A)Parameter file.
B)Temporary file.
C)Master file.
10

Which of the following is not a disadvantage of using files to store data?
A)As the number of applications grows, the number of files grows, and the same data may be held in different files, creating data integrity problems.
B)Combining data from different applications to meet new business requirements is difficult, as data in different files may be accessed in different ways.
C)Files can be used to hold prompts and labels in order to localize an application for use in different countries.
11

Which of the following is not an advantage of using a database management system?
A)The use of a conceptual schema can eliminate unnecessary duplication of data.
B)A database administrator must be employed to manage the system.
C)The performance of the database can be tuned to optimise access to the data.
12

Which of the following best describes normalization?
A)Converting complex data structures into tables that meet clearly defined criteria.
B)Removing duplicate values from data in tables.
C)Converting class diagrams into entity-relationship diagrams.
13

Which of the following is not a valid guideline for mapping classes to tables?
A)Classes with simple data structures become tables.
B)One-to-one associations are implemented using foreign key attributes.
C)Collection classes are implemented using foreign key attributes.
14

Which of the following approaches is the best way of implementing inheritance in situations where it is known that the superclass is abstract?
A)Only implement the superclass as a table.
B)Only implement the subclasses as tables.
C)Implement all the classes (superclasses and subclasses) as tables.
15

Which of the following statements best describes the use of object databases?
A)Object databases store objects transparently. Compared to using a relational database, designing for an object database will have a minimal impact on the design of the system.
B)Object databases store objects in relational database tables. The designer has to specify a set of rules for how the objects are to be mapped to the tables.
C)Object databases provide the seamlessness claimed for object-oriented development by storing the operations of objects in the database, while the data is mapped to relational tables.
16

What is CORBA?
A)A standard for passing messages between objects running on different machines.
B)A standard for object-oriented databases.
C)A misspelling of Cobra, a popular Indian beer among software developers.
17

Which of the following statements best describes the use of the PersistentObject approach to designing the data storage layer?
A)All objects in the system implement the PersistentObject interface. This interface acts as a broker between objects and the database.
B)All the operations that are concerned with storing and retrieving objects from the database are implemented as class-scope operations.
C)All classes in the system that represent persistent objects must inherit from an abstract superclass called PersistentObject that provides operations to store, delete and update objects in the database.
18

Which of the following statements best describes the use of the broker framework?
A)For each persistent class there is a broker class that is responsible for materializing instances of that class from the database and dematerialising them back into the database.
B)Every persistent class inherits from the abstract RelationalBroker class, which provides the mechanisms for storing and retrieving object instances.
C)For every persistent object there is a broker object that is responsible for materializing the object from the database and dematerialising it back into the database.
19

Why might six caches be used in a persistence framework?
A)Six caches are better than one.
B)To distinguish between the different states of objects (new/old and clean/dirty/deleted).
C)The magic number seven plus or minus two.
20

In the diagram below, what is the purpose of the IntCampaignProxy class?

<a onClick="window.open('/olcweb/cgi/pluginpop.cgi?it=jpg::Figure18_20::/sites/dl/free/0077110005/315085/Fig18_20.JPG','popWin', 'width=NaN,height=NaN,resizable,scrollbars');" href="#"><img valign="absmiddle" height="16" width="16" border="0" src="/olcweb/styles/shared/linkicons/image.gif">Figure18_20 (50.0K)</a>Figure18_20

A)The IntCampaignProxy contains the IntCampaignBroker object.
B)The IntCampaignProxy decouples the IntCampaign from the cache.
C)The IntCampaignProxy acts as a placeholder for the actual IntCampaign. The IntCampaign is only materialized from the database when required.







O-O Systems Analy, Bennett, 3eOnline Learning Center

Home > Chapter 18 > Multiple Choice Quiz