Can someone tell me what is a thread,please-because I'm a non-computer person

Solution
it's an activity or a process, BUT it happens at several levels below where you, as a user, work so you don't need to know about it. For instance opening an internet window might create a dozen different processes each with it's own thread. If a computer can only cope with one at a time then all of that dozen have to happen sequentially before you can do anything, if it can cope with 4 at a time then some, but not all, of them might happen at the same time.

n0ns3ns3

Commendable
May 25, 2016
136
0
1,710


Can you provide some context ?

If you are talking about single thread or multi thread, it's about the ability of the program/hardware to perform single task or number of tasks simultaneously.
 

13thmonkey

Distinguished
Jan 10, 2006
797
3
19,210
it's an activity or a process, BUT it happens at several levels below where you, as a user, work so you don't need to know about it. For instance opening an internet window might create a dozen different processes each with it's own thread. If a computer can only cope with one at a time then all of that dozen have to happen sequentially before you can do anything, if it can cope with 4 at a time then some, but not all, of them might happen at the same time.
 
Solution