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

What is the initial state, When a thread is created and
started?

Answer Posted / rajesh

Initial state of the thread is ready state. When you create
an object of the class either implementing the runnable
interface or extending Thread class, thread is created.

Thread is start when developer calls;

Thread.start() method

Is This Answer Correct ?    10 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define prototype?

1123


What is the RMI and Socket?

1097


What are the different methods of identifying an object?

1127


What is glasgow?

1109


What is the purpose of the notify() method?

1134


Explain about thread synchronization inside a monitor?

2605


What is the difference between static and non-static with examples?

1995


Explain how will the struts know which action class to call when you submit a form?

1013


Which characters may be used as the second character of an identifier, but not as the first character of an identifier?

1104


What is ripple effect?

1125


What is permgen or permanent generation?

1078


What is the highest-level event class of the event-delegation model?

1162


Will the general public have access to the infobus apis?

1119


How would you reatach detached objects to a session when the same object has already been loaded into the session?

1262


int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!

1886