InterviewSolution
Saved Bookmarks
| 1. |
Can two threads execute two methods (static and non-static concurrently)? |
|
Answer» YES, it is possible. If both the THREADS acquire LOCKS on different objects, then they can EXECUTE concurrently without any problem. |
|