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 thread?

Answers were Sorted based on User's Feedback



What is thread?..

Answer / l.gururajan

Thread is a path of the execution in a program.

Is This Answer Correct ?    6 Yes 0 No

What is thread?..

Answer / naveen

A thread is a part of program that follows a separate path of execution.
A thread is also called a light weight process as they share common resources

Is This Answer Correct ?    4 Yes 0 No

What is thread?..

Answer / avijit

Thread is a light weight process.

Is This Answer Correct ?    3 Yes 0 No

What is thread?..

Answer / lavanya

Thread is a sub-process.

Is This Answer Correct ?    3 Yes 0 No

What is thread?..

Answer / dsr

Thread is a independent sequential of program.

Is This Answer Correct ?    0 Yes 0 No

What is thread?..

Answer / javamasque

Threads are lightweight process which lives inside process. These are independently running programs which have concurrent path of execution. Each thread has its own 1. Java stack 2. Program counter and 3. Native stack but have common heap space. Multiple threads with in same process share same variables and objects. They allocates objects from same heap and even they can share same instructions (execution code) at particular time. As a result above common access they can easily share information to each other.

Every program has at least one thread i.e. main thread. JVM creates main thread which calls main method to execute whole program. The main thread is non-daemon thread. Any thread created by main method is non-daemon thread by default.

JVM has daemon threads for garbage collection, object finalization and other housekeeping jobs.

Is This Answer Correct ?    0 Yes 0 No

What is thread?..

Answer / kalva raju

thread is a small program

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Core Java Interview Questions

how to crate clint-server socket?

1 Answers   Accenture, Infosys, Infotech, TCS,


How is it possible in java programming for two string objects with identical values not to be equal under the == operator?

0 Answers  


Which collection object is faster to retrieving the data and inserting the data into it.

2 Answers   Jamcracker, Virtusa,


What is thread life cycle in java?

0 Answers  


What is a line break?

0 Answers  


Explain the term virtual machine?

0 Answers   Adobe,


Do you know how to reverse string in java?

0 Answers  


IN java collections we have both interfaces and classes. instead of using interfaces why we can't use classes only like that why we can't use interfaces only. why we need two things interface and class.

6 Answers   Accenture, CTS,


Can we override constructors in java?

0 Answers  


What will be the default values of all the elements of an array defined as an instance variable?

0 Answers  


Write a program to solve producer consumer problem in java?

0 Answers  


How can you avoid serialization in child class if the base class is implementing the serializable interface?

0 Answers  


Categories