#javainterviewquestions
Read more stories on Hashnode
Articles with this tag
Motivation just documenting my journey of the interview prepration and learning by doing and sharing it with others Interview Questions Design a...
Motivation just wanted to document my journey my failures and my wins over these years , it will be great once I will re-read these blogs post or...
Thread behavior is unpredictable ? Thread behavior is unpredictable -> becuase it depends on Thread Scheduler and thread scheduler depends on the env...
ArrayList and CopyOnWriteArrayList fail-fast -> one thread is iterating and another thread modifies the arrayList that time...
Q2. Is there any difference between creating string with and without new operator? String s1 = "abc"; String s2 = new String("abc"); ...