Description: programming languages Online Quiz - 70 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<
Which of the following data structures is on average the fastest for retrieving data:
If you continuously increment a variable, it will become negative?
Which of the following is evaluated first:
What does 7/9*9 equal (in C and C++)?
Which of the following is true?
Difference between Emp e = session.load(Emp.class) and Emp e = session.createCriteria(Emp.class) ?
____ forces hibernate to bypass the setter method and access the instance variable directly while initializing a newly loaded object.
Employee emp = session.load(Employee .class);
what does hibernate.hbm2ddl.auto create this means ?
How can a whole class be mapped as immutable?
What does sess.delete() do?
If instances are not in the session or second-level cache which will give better performance?
What does CacheMode do ?
Does hibernate require persistent classes to implement Serializable?
What does session.load() return if there is no matching database row ?
HQL is used in ?
what is the default value in hibernate ?
Batch fetching is useful incase of ?