Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 1309 Page Views: 

What is the Vector class?



Posted By: Avi Date: 9 November 2010 01:28:52 PM
 Answer:

The Vector class provides the capability to implement a growable array of objects


Posted By: avibtech


Date: 9 November 2010 01:28:52 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image tP75GM
Related Questions
Core Java : Primitive data types are passed by reference or passed by value?

Primitive data types are passed by reference or passed by value?

Primitive data types are passed by value.
Category: Core Java Date: 10/30/2009 4:17:35 AM
Core Java : Can try statements be nested?

Can try statements be nested?

Yes, Try statements can be nested.
Category: Core Java Date: 9/12/2009 8:20:13 PM
Core Java : What is a Java package and how is it used?

What is a Java package and how is it used?

A Java package is a naming context for classes and interfaces. A package is used to create a separat....
Category: Core Java Date: 9/12/2009 8:19:01 PM
Core Java : What method must be implemented by all threads?

What method must be implemented by all threads?

All the thread objects must implement the run() method, whether they are a subclass of Thread or imp....
Category: Core Java Date: 9/12/2009 8:12:44 PM
Core Java : What is the difference between an if statement and a switch statement?

What is the difference between an if statement and a switch statement?

The if statement is used to select among two alternatives. It uses a boolean expression to decide wh....
Category: Core Java Date: 9/12/2009 8:10:53 PM