28.
The volatile modifier is usually used for a field that is accessed by multiple threads without using the lock statement to serialize access.
View Description
The volatile keyword indicates that a field can be modified in the program by something such as the operating system, the hardware, or a concurrently executing thread.