InterviewSolution
Saved Bookmarks
| 1. |
Which of these modifiers can be used for a variable so that it can be accessed from any thread or parts of a program?(a) transient(b) volatile(c) global(d) No modifier is needed |
|
Answer» The correct option is (b) volatile Easiest explanation: 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. |
|