⟩ How many threads at a time can access a monitor?
one
one
Tell us why would it be more secure to store sensitive data (such as a password, social security number, etc.) in a character array rather than in a String?
Explain me what is association?
Can you give real world examples of when to use an ArrayList and when to use LinkedList?
Can you explain me what is Polymorphism?
Explain me what is the difference between String s = "Test" and String s = new String("Test")? Which is better and why?
Explain me what does it mean for a collection to be “backed by” another? Give an example of when this property is useful?
Explain me what is runtime polymorphism or dynamic method dispatch?
Tell us what are constructors in Java?
Can you compare the sleep() and wait() methods in Java, including when and why you would use one vs. the other?
Tell me public static void main(String args[])?