Which of the following statements is true about "Race Condition"?
1
When multiple processes are accessing shared data without access control, the final result depends on the execution order.
2
When one process is executing in its critical section, no other process is allowed to execute in that critical section.
3
If multiple processes are blocked on the same semaphore, only one of them will be awakened when another process performs signal(s) operation.
4
If the critical section is being used, waiting processes loop continuously at the entry point.
5
None of These