C++ Static Data Question:
Download Questions PDF

Explain what are volatile variables?

C++ Static Data Interview Question
C++ Static Data Interview Question

Answer:

A volatile variable is a variable which is modified asynchronously by the threads that are concurrently running in a java application. A volatile variable does not allow having a copy of variable that is local. It is a different value from the value which is currently available in main memory. A volatile variable mandatorily have its data synchronized for all the threads. So that, whenever the value of the volatile variable is updated by any thread, all other threads can access the same value immediately. Higher access and update overhead are likely to the volatile variables on contrast to plain variables, as all threads have their own set of data for efficiency considerations.

Download C++ Static Data Interview Questions And Answers PDF

Previous QuestionNext Question
Explain dynamic type checking?Explain the uses of static class data?