1.
In Hibernate, which of these is used for joining tables in collection mapping?
2.
In Hibernate, which of these is used with collection type in collection mapping?
3.
In Hibernate, which of these is used for a table per sub class for a super class?
4.
In Hibernate, which of these is used for a table per sub class for a sub class?
5.
How many types of association mapping are there in Hibernate?
6.
In Hibernate, which of these helps in setting the version?
7.
Which of these hibernate mappings is correct?

8.
Which database is connected in the following Hibernate code:

 
<hibernate-configuration>

 
 
  <session-factory>            
<property name="hbm2ddl.auto">update</property>            
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver </property>            
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/jlcindiadb </property>            
<property name="hibernate.connection.username">root</property>            
<property name="hibernate.connection.password">silu</property>            
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>            
<property name="show_sql">true</property>            
<mapping resource="Customer.hbm.xml"/>        
</session-factory>

 
 
      </hibernate-configuration>
9.
Which of these properties makes Hibernate generate an appropriate SQL for a chosen database?
10.
In Hibernate, which element, within the id element, is used to automatically generate primary key values?