What are threads? |
[Edit] |
Answer
Many programming languages, operating systems, and other software development environments support what are called "threads" of execution. Threads are similar to processes, in that both represent a single sequence of instructions executed in parallel with other sequences, either by time slicing or multiprocessing. Threads are a way for a program to split itself into two or more simultaneously running tasks. (The name "thread" is by analogy with the way that a number of threads are interwoven together)
First answer by ID1184720795. Last edit by ID1184720795. Question popularity: 35 [recommend question]
|
Research your answer: |



