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 |
Explain about interthread communication and how it takes place in java?
What is the difference between jfc & wfc?
What is formatted output in java?
What is a boolean output?
What are the important methods of java exception class?
What is the need of "creating and throwing an UserdefinedException" when the "Exception" class is already available?
What is the difference between actual and formal parameters?
Difference between Hash Table and Hash Map?
What is Transient and volatile
import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }
How many arguments can be passed to main ()?
What is the difference between an if statement and a switch statement?