Explain whether it is possible to have concurrency but not parallelism.
Yes, it is possible to have concurrency processes or threads but at the same time,
they are not parallel.
Concurrency shows that two or more processes are progressing in the same time.
However that does not necessarily mean they are running at the same time. For
example, multitasking on a single core.
Parallelism is when the processes literally are executed at the same time; it
depends only on multicore processor.
Yes, it is possible to have concurrency processes or threads but at the same time,
they are not parallel.
Concurrency shows that two or more processes are progressing in the same time.
However that does not necessarily mean they are running at the same time. For
example, multitasking on a single core.
Parallelism is when the processes literally are executed at the same time; it
depends only on multicore processor.