-2

I got a little confused,when there is 2 cores or more to a CPU does it mean that two processes can run on those cores or two different threads?.When there is hyper-threading does two threads run the same time in the core?

1 Answers1

0

when there is 2 cores or more to a CPU does it mean that two processes can run on those cores or two different threads?

It means that two threads can run at the same time. Those two threads may or may not belong to different processes. Processes use threads to get work done.

When there is hyper-threading does two threads run the same time in the core?

Yes, exactly. The two threads share the core's execution resources.