What is multithread synchronizing ?
Answer Posted / brijesh
hi...
it is a process in which therd is spread seonity
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
how do you Handle Front End Application data against DB with example?
Why use POJO when I can use hashmap
How would you reatach detached objects to a session when the same object has already been loaded into the session?
Explain phantom read?
Why won’t the jvm terminate when I close all the application windows?
What state does a thread enter when it terminates its processing?
What value does readline() return when it has reached the end of a file?
Difference between new operator and class.forname().newinstance()?
What classes of exceptions may be caught by a catch clause?
Which component handles cluster communication in jboss?
What is a sessionfactory? Is it a thread-safe object?
what are getters and setters in Java with examples?
What is the difference between session and entity beans?
What is the difference between the session.get() method and the session.load() method?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!