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...


where you use thread in your java project?



where you use thread in your java project?..

Answer / sathish reddy

There are many and varied uses for threads.

If your Java application is a server, like a web server,
then you might want to be servicing more than one client at
a time. Thus you may have one thread per client.

An interactive Java application migth need to do something
that takes some time, for example calculate something
complex or drag down data from a server. In this case you
might want to do the time consuming work in one thread while
your user interface is in another thread displaying a
"Working, press Cancel if you want me to stop" dialog.

There are also situations where you need to compute A, B and
C, each of which takes time but can be done in no particular
order. In that case it may be quicker to do them each in
their own thread rather than one after the other.

Until a few years ago processors were getting faster and
faster. Today procesors are pretty much going as fast as
they can with current technology. Instead processors are
being given more and more "cores", each core being able to
run one thread. One of the challenges facing computer
science now is moving to models that better support the
hardware we're now running on.

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More Struts Interview Questions

What is interceptor in Struts2?

0 Answers  


what is the purpose of load_on_startup entry in struts- config.xml?

5 Answers  


What are the struts2 error message keys that can come during file uploading process?

0 Answers  


Why do we need struts?

0 Answers  


How can we work with error tags?

0 Answers  


What is the use of struts?

0 Answers  


What is actionform in struts?

0 Answers  


how to write my own Action servlet by extending pre-defined Action servlet in struts config.

2 Answers   Sony,


What is difference between interceptors and filters?

0 Answers  


Can we have multiple struts-config files in a single web app? If yes why should we have them? Will multiple copies make any impact on performance?

2 Answers   Accenture,


When should be opt for struts framework?

0 Answers  


What is struts in j2ee?

0 Answers  


Categories