“A race condition would pose problems for a multi-core system; it cannot occur in a single-core system”. TRUE or FALSE?
A race condition occurs when two or more threads can access shared data and they try to change it at the same time. In a single-core system, there can be multiple threads. So race condition can happen in single-core system also. So, The given statement is FALSE.
FALSE
“A race condition would pose problems for a multi-core system; it cannot occur in a single-core...