What is the Vector class?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
vector class is legacy and contains synchronized methods
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / janet
The Vector class provides the capability to implement a
growable array of objects.
| Is This Answer Correct ? | 1 Yes | 1 No |
What is empty string literal in java?
Why multiple inheritance is not supported by java?
How can constructor chaining be done by using the super keyword?
What are the three parts of a lambda expression?
why java does not support mulitple inheritance directly?
How many functional interfaces does java 8 have?
What is garbage collection in Java, and how can it be used ?
32 Answers Accenture, HCL, Infosys, Sara, SITS, TCS, Wipro,
String is an immutable object. Then how can the following code be justified. String s1 = ?ABC?; String s1 = s1+?XYZ?; s.o.p(s1); The output is ABCXYZ, which is the value of s1 ?
6 Answers Flextronics, Keane India Ltd,
Explain the init method?
What is the difference between constructor and method?
What is the difference between a field variable and a local variable?
List interface?