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 is casting?

3 Answers   BMC,


What is use of super keyword?

0 Answers  


What is the meaning of I ++ in java?

0 Answers  


What is a final class in java?

0 Answers  


What is the += operator called?

0 Answers  


what is use of marker interface? give me good example?

2 Answers  


What is a method header?

0 Answers  


What is the program compilation process?

0 Answers  


What is cr keyboard?

0 Answers  


What is the implementation of destroy method in java. Is it native or java code?

0 Answers  


what is business delegate?

2 Answers   TCS,


Explain how to force the garbage collection in java.

0 Answers  


Categories