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 arraylist and listeterator.and
value should be enter through keyboard.



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

Answer / magreal

public static void main(String[] args) {

String str;
List<String> l = new ArrayList();
int i=0;
boolean more = true;
do{
str = TextIO.getln();
l.add(str);
i++;
TextIO.putln("Add new item ? Y/N");
}while(TextIO.getlnBoolean());

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

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Core Java Interview Questions

What is access modifiers?

1 Answers   Cap Gemini,


What primitive Java types? Howmany are they and what are their names?

3 Answers  


What are serialization and deserialization?

0 Answers  


What is the generic class?

0 Answers  


Explain about the security aspect of java?

0 Answers  


What is preflight request?

0 Answers  


how to deploy tomcatserver to weblogic server? write d following steps?

0 Answers  


How is object created in java?

5 Answers   Cap Gemini,


What is a thin-client application?

5 Answers   Adobe,


What are Access Specifiers and Access Modifiers.

6 Answers   TCS,


Explain access specifiers?

0 Answers   Thomson Reuters, Virtusa,


Is string is a class in java?

0 Answers  


Categories