-
Which of these modifiers can be used for a variable so that it can be accessed from any thread or parts of a program?
-
- global
- No modifier is needed
- volatile
- transient
- None of these
Correct Option: C
The volatile modifier tells the compiler that the variable modified by volatile can be changed unexpectedly by other part of the program. Specially used in situations involving multithreading.