which of tha following is not a thread safe class?
a) ArrayList b)Vector c)HashTable d)None
Answer Posted / ragubir singh
ArrayList
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
What does java ide mean?
Is java an ide?
How can we access some class in another class in java?
What is a substitution variable?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (
What is string pooling concept?
What is string example?
What is the purpose of the System class?
What is java util collection?
How do you override a method?
what is an objects lock and which objects have locks? : Java thread
What does string intern() method do?
How to Sort Strings which are given in List and display in ascending order without using java api.
Where pragma is used?
Can we have multiple classes in single file ?