Showing posts with label Java Interview Questions. Show all posts
Showing posts with label Java Interview Questions. Show all posts
Monday, August 12, 2013
7 years experienced core java interview questions job interview
This post covers the java interview questions asked for 7 years experienced developers. Post completion of this tutorial, you understand how to prepare for interview if you are experienced developer in Java.
Java, J2EE, Struts, Hibernate, Web Services, JSF
Important Java Interview questions,
Java,
Java Interview Questions,
Java interview questions for 7 years experienced developers,
Java tutorials
Sunday, February 12, 2012
About Isolation levels & Transaction levels
The isolation level measures concurrent transaction's
capacity to view data that have been updated, but not yet committed, by another
transaction if other transactions were allowed to read data that are as yet
uncommitted, those transactions could end up with inconsistent data were the
transaction to roll back, or end up waiting unnecessarily were the transaction
to commit successfully.
A higher isolation
level means less concurrence and a greater likelihood of performance
bottleneck, but also a decreased chance of reading inconsistent data. A good
rule of thumb is to use the highest isolation level that yields an acceptable
performace level. The following are commin issilation levels, arranged from
lowest to highest.
- ReadUncommitted: Data that have been updated but not yet committed by a transaction my be read by other transactions
- Readcommitted: Only data that have been committed by a transaction can be read by other transactions.
- Repeatable Read: Only data that have been commited by a trasaction can be read by other transactions, and multiple reads will yield the same result as log as the data have been committed.
- Serializable: This highest possible iosolation level, ensures a transaction's execlusive read-write access to data, it includes the conditions of ReadCommitted and Repeatable Read and stiplulates that all transactions run serially to achieve maximum data integrity. This yields the slowest performance and least concurrency. The term serializable in this context is absolutely unrelated to the database.
Java, J2EE, Struts, Hibernate, Web Services, JSF
Database Transactions,
Java,
Java Interview Questions
Wednesday, September 23, 2009
Java Interview Questions
Please post answers for fallowing Questions:
1. What is serial version id which generated in Eclipse.
2. What is the difference between implementing an interface and extending a class
3. What is servlet lifecycle?
4. can static variables are bind with objects?
5. what is the difference between Servlet and Servlet filter?
6. What is the difference between filter and listener?
7. What are features swing has over the awt?
8. what are the features of hibernate?. What is hibernate?
9. What are adapting classes?
10. What are the differences between string and StringBuffer?
11. What is mutable?
12. What are the differences between Arraylist and Vector?
13. How can you deploy an application in tomcat and JBoss?
14. How many layers do you used to develop the web application?
1. What is serial version id which generated in Eclipse.
2. What is the difference between implementing an interface and extending a class
3. What is servlet lifecycle?
4. can static variables are bind with objects?
5. what is the difference between Servlet and Servlet filter?
6. What is the difference between filter and listener?
7. What are features swing has over the awt?
8. what are the features of hibernate?. What is hibernate?
9. What are adapting classes?
10. What are the differences between string and StringBuffer?
11. What is mutable?
12. What are the differences between Arraylist and Vector?
13. How can you deploy an application in tomcat and JBoss?
14. How many layers do you used to develop the web application?
Java, J2EE, Struts, Hibernate, Web Services, JSF
Java Interview Questions
Subscribe to:
Posts (Atom)