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