what is a dirty read?
Answer / srikanth
For eg:
There are two tx- A and B
If a row has been changed by tx-A and not commits it.In the
mean while if the tx-b reads the row in the mean while if
again tx-A commits the row updated then tx-B will get the
different results.
| Is This Answer Correct ? | 0 Yes | 1 No |
Write a java program to find out the sum of harmonic series : 1 + ½ + 1/3 + ……… up to nth term , for any value of n.
Name three subclasses of the component class?
what is Bootstrap loader program?
what is a dirty read?
What is servlet preinitialization
what is the use of Object Factories?
Hi I have joined java course. I also want additional help from any tutorials website. Please suggest me tutorials which provides easy to understand online applet tutorials?
What is mdb and what is the special feature of that?
Thread life cycle?
what is Static binding?
How two threads will communicate with each other?
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }