Hibernate Flashcards
\_\_\_\_\_\_ fetching loads child records ahead of time, whereas \_\_\_\_\_\_ fetching only loads child records on-demand. Select one: a. Lazy, Eager b. Cascade, Eager c. Eager, Lazy d. Lazy, Cascade
c. Eager, Lazy
________ ensures the SQL only contains columns whose state have changed, and _________ ensures SQL only contains columns whose values are not null.
Select one:
a. Automatic dirty checking, transactional write-behind
b. Dynamic-insert, dynamic-update
c. Dynamic-update, dynamic-insert
d. Transactional write-behind, automatic dirty checking
c. Dynamic-update, dynamic-insert
An object in transient state in hibernate is linked to the database.
Select one:
A. TRUE
B. FALSE
B. FALSE
by default, lazy loading is enabled in Hibernate for collections
Select one:
A. TRUE
B. FALSE
A. TRUE
Criteria API can be used to store data in the database.
Select one:
A. TRUE
B. FALSE
B. FALSE
ehCache is a L2 Cache provider for Hibernate.
Select one:
A. TRUE
B. FALSE
A. TRUE
For the whole application, there will be generally one \_\_\_\_\_\_\_\_\_ and can be shared by all the application threads. Select one: a. Session b. SessionFactory c. Transaction d. Query
b. SessionFactory
Hibernate bootstrapping is performed by which core interface? Select one: a. Session b. Configuration c. SessionFactory d. Transaction
b. Configuration
Hibernate is a DAO framework, not an ORM framework
Select one:
A. TRUE
B. FALSE
B. FALSE
Hibernate is classified under the Presentation layer in the J2EE architecture
Select one:
A. TRUE
B. FALSE
B. FALSE
How can we have Hibernate write the generated SQL to the console?
Select one:
a. property name=show_sql in hibernate.cfg.xml
b. ShowSQL annotation in POJO mappings
c. Pass the System.out OutputStream to the CRUD method as a parameter
d. property name=show_sql in mapping.hbm.xml
a. property name=show_sql in hibernate.cfg.xml
How can you define a sequence generated primary key in Hibernate?
Select one:
a. Using the generator tag in HBM or the GeneratedValue annotation
b. Using the generated tag in HBM or the GeneratedValue annotation
c. Using the sequence tag in HBM or the Sequence annotation
d. Using the sequence tag in HBM or the GeneratedValue annotation
a. Using the generator tag in HBM or the GeneratedValue annotation
HQL is the object oriented version of SQL and it works with Entity class names rather than table names.
Select one:
A. TRUE
B. FALSE
A. TRUE
L2 Cacheing is specific to a SessionFactory rather than a Session object.
Select one:
A. TRUE
B. FALSE
A. TRUE
mapping class tag is used to map an hbm.xml file in Hibernate.cfg.xml.
Select one:
A. TRUE
B. FALSE
B. FALSE
session-factory is a tag in hibernate.cfg.xml.
Select one:
A. TRUE
B. FALSE
A. TRUE
The \_\_\_\_\_\_ instance state refers to an object not associated with any data. A \_\_\_\_\_\_\_\_ state means an object is associated with data within the session. After the session is closed, the object changes to the \_\_\_\_\_\_\_\_ state. Select one: a. Detached, Persisted, Salient b. Transient, Persistent, Detached c. Persisted, Salient, Detached d. Detached, Persistent, Transient
b. Transient, Persistent, Detached
The \_\_\_\_\_\_ interface allows developers to write and execute HQL. Select one: a. Query b. Criteria c. Session d. HQL
a. Query
The \_\_\_\_\_\_\_\_\_\_\_\_ transaction isolation level addresses none of the concurrency issues. Select one: a. Read uncommitted b. Read committed c. Repeatable read d. Serializable
a. Read uncommitted
The \_\_\_\_\_\_\_\_\_\_\_\_ transaction isolation level addresses the dirty read concurrency issue. Select one: a. Read uncommitted b. Serializable c. Repeatable read d. Read committed
d. Read committed
The \_\_\_\_\_\_\_\_\_\_\_\_ transaction isolation level addresses the phantom read concurrency issue. Select one: a. Read uncommitted b. Read committed c. Serializable d. Repeatable read
c. Serializable
The \_\_\_\_\_\_\_\_\_\_\_\_ transaction isolation level addresses the unrepeatable read concurrency issue. Select one: a. Read committed b. Repeatable read c. Serializable d. Read uncommitted
b. Repeatable read
The atomic property of a database transaction means
Select one:
a. Multiple statements executed as one unit of work will pass or fail together.. all or nothing
b. Each statement executes and commits data serially
c. Each statement holds database locks at the finest level of granularity
d. All of the above
a. Multiple statements executed as one unit of work will pass or fail together.. all or nothing
The basic interface for all Hibernate applications is the \_\_\_\_\_\_\_\_. The instances are light weighted and can be created and destroyed without expensive process. Select one: a. Session b. SessionFactory c. All of the above d. Configuration
a. Session
The consistent property of a database transaction means
Select one:
a. Any transaction will leave the data in a consistent state and rollback if the transaction fails
b. Transactions have consistent behavior, meaning they execute the same SQL statements
c. Transactions consistently avoid the use of cascades, triggers, and constraints
d. All of the above
a. Any transaction will leave the data in a consistent state and rollback if the transaction fails
The durable property of a database transaction means
Select one:
a. Committed data will remain persisted regardless of power loss, system crash, or other fatal errors
b. Transactions are recorded in non-volatile, secondary storage
c. All of the above
d. RAID configuration ensures data mirroring for 100 percent redundancy
c. All of the above
The get method in hibernate throws an exception when the object is not found in the database.
Select one:
A. TRUE
B. FALSE
B. FALSE
The isolated property of a database transaction means
Select one:
a. Concurrent transactions provide the same results that would be found if transactions were executed one-by-one
b. Transactions execute in a serialized, first-in first-out fashion
c. All of the above
d. Concurrent transactions occur within a separate database schema, isolated from one another
d. Concurrent transactions occur within a separate database schema, isolated from one another
The load method in Hibernate reads data from the database directly.
Select one:
A. TRUE
B. FALSE
B. FALSE
The load method will ______ if the record is not found, whereas get will _______.
Select one:
a. Throw an exception, throw an exception
b. Return null, return null
c. Throw an exception, return null
d. Return null, throw an exception
c. Throw an exception, return null
This core Hibernate interface is used to commit and rollback changes to the state of persistent data. Select one: a. Session b. Transaction c. Query d. SessionFactory
b. Transaction
Use \_\_\_\_\_\_\_ if you are sure that the session does not contain an already persistent instance with the same identifier, and \_\_\_\_\_\_\_ if you want to force Hibernate to save your modifications at any time without consideration of the state of the session. Select one: a. Update, merge b. Merge, SaveOrUpdate c. Merge, update d. Join, merge
a. Update, merge
What important information is not stored in the hibernate.cfg.xml file? Select one: a. JDBC connection configuration b. Mapping files c. SQL dialect variant d. One-to-many mappings
d. One-to-many mappings
What is an HBM file? Select one: a. None of the above b. Maps tables to objects and maps table relationships c. Configures the SessionFactory d. Configures your cache properties
b. Maps tables to objects and maps table relationships
What is automatic dirty checking?
Select one:
a. Hibernate updates the object when the database state changes
b. Hibernate performs dirty reads and can do this within Read committed mode
c. Hibernate updates the database when we modify the state of an object inside a transaction
d. All of the above
c. Hibernate updates the database when we modify the state of an object inside a transaction
What is HQL?
Select one:
a. The same as SQL but allows some short-hand notation
b. A Java Persistence API (JPA) standard that Hibernate enforces through a consistent query language
c. An object-oriented extension to SQL, which refers to beans and properties instead of tables and columns
d. None of the above
c. An object-oriented extension to SQL, which refers to beans and properties instead of tables and columns
What is not a type of inheritance model in Hibernate? Select one: a. Table per class hierarchy b. Table per subclass c. Table per abstract class d. Table per concrete class
c. Table per abstract class
What is not true about Hibernate?
Select one:
a. Maps database tables to Java classes via XML or annotations
b. Considered within the light objects mapping ORM level
c. An object-relational mapping framework for Java
d. Provides CRUD operations to relieve developers from writing more SQL
b. Considered within the light objects mapping ORM level
What is the difference between level 1 (L1) and level 2 (L2) caching?
Select one:
a. L1 cache is default, while L2 cache is optional
b. All of the above
c. L2 cache uses EHCache, OSCache, and other plugins for configuration
d. L1 cache is session-scoped, while L2 cache is formed by the SessionFactory
b. All of the above
What is the difference between sorting and ordering collections in Hibernate?
Select one:
a. Sorting uses Java collections sorting, and ordering uses the SQL order by clause
b. Ordering uses Java collections sorting, and sorting uses the SQL order by clause
c. Sorting is slower when the collection is small
d. Ordering is slower when the collection is large
a. Sorting uses Java collections sorting, and ordering uses the SQL order by clause
What is the purpose of the Criteria interface?
Select one:
a. Fully object-oriented programmatic query creation
b. None of the above
c. Higher optimization of your HQL queries
d. Execute native SQL in your code
a. Fully object-oriented programmatic query creation
What is transactional write-behind?
Select one:
a. Hibernate automatically avoids foreign key constraints when manipulating data
b. All of the above
c. Hibernate writes the state of the object after the transaction is committed
d. Hibernate updates the database when we modify the state of an object inside a transaction
a. Hibernate automatically avoids foreign key constraints when manipulating data
When using Criteria, \_\_\_\_\_\_\_\_\_ adds a WHERE clause, and \_\_\_\_\_\_\_\_\_ adds an aggregate function. Select one: a. Restrictions, Projections b. Restrictions, Aggregations c. Where, Aggregate d. Projections, Restrictions
a. Restrictions, Projections
Which is not a common JPA annotation for POJO mappings? Select one: a. Bean b. Entity c. OneToMany d. Table
a. Bean
Which is not one of the Hibernate-specific Collection types? Select one: a. Map b. ArrayList c. Bag d. List e. Set
b. ArrayList
Which of the following annotations is used to map a class with a table in the database? Select one: A. @Persistence B. @Store C. @Entity
C. @Entity
Which of the following is not a collection type in Hibernate? Select one: A. Set B. List C. Bag D. Queue
D. Queue
Which of the following is not a property of a transaction? Select one: A. Atomic B. Consistent C. Integrity D. Durable
C. Integrity
Which of the following is not an interface in Hibernate Select one: A. Session B. SessionFactory C. Transaction D. Connection
D. Connection
You register an HBM file using ________ and an annotated POJO using __________ in the hibernate.cfg.xml?
Select one:
a. mapping resource=__, mapping class=__
b. mapping class=__, mapping class=__
c. mapping resource=__, mapping resource=__
d. mapping class=__, mapping resource=__
a. mapping resource=__, mapping class=__
\_\_\_\_\_\_\_\_\_\_\_ represents a current development copy of a dependency. Select one: a. Version b. Model Number c. Artifact ID d. SNAPSHOT
d. SNAPSHOT