Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write a program to create an vector and listeterator.and value
should be enter through keyboard.



write a program to create an vector and listeterator.and value should be enter through keyboard...

Answer / magreal

public static void main(String[] args) {

String str;
Vector<String> v = new Vector<String>();
do{
str = TextIO.getln();
v.add(str);
TextIO.putln("Add the item ? Y/N");
}while(TextIO.getlnBoolean());

for(String s: v){
TextIO.putln(s);
}
}

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

What are the standards to place package statement within a source code file?

1 Answers  


What is functional interface in java example?

0 Answers  


How many types of exception can occur in a java program?

0 Answers  


What is difference between path and classpath in java?

0 Answers  


What are the two types of java programming?

0 Answers  


i would like to attend for an interview of datalab technologies company i want to know the pattern of imnterview.

0 Answers  


how to print the below in java?thanks in advance.... * * * * * * * *

3 Answers  


How can we achieve thread safety in java?

0 Answers  


What restrictions are placed on method overloading and method overriding?

5 Answers  


What are assertions in java?

1 Answers   Impetus,


Can you call a private data from an inner class?

6 Answers  


Explain about doubly linked list

0 Answers   Aditi Placement Service,


Categories