Explain what data encapsulation is in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What problems might the following macro bring to the application?

0 Answers  


What are the restrictions apply to constructors and destructors?

0 Answers  


Define a pointer to a data member of the type pointer to pointer?

0 Answers  


let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.

1 Answers  


How can we read/write Structures from/to data files?

0 Answers  






Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }

2 Answers   CDAC, Wipro,


What is an inline function in c++?

0 Answers  


What is static class data?

0 Answers  


What is the latest c++ standard?

0 Answers  


What is abstract class in c++?

0 Answers  


If all is successful, what should main return a) 0 b) 1 c) void

0 Answers  


What is null pointer and void pointer?

0 Answers  


Categories