What is encapsulation in c++?
Answer / nashiinformaticssolutions
An object-oriented programming concept called encapsulation unifies functions and data into a single entity. This is a crucial step in the data hiding process that shields data from outside intervention. Classes and access modifiers are used in the implementation of encapsulation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain polymorphism?
How the virtual functions maintain the call up?
What is the difference between = and == in C?
20 Answers Christ University, Intel,
Which programming language is best to learn first?
What is Destructor in C++?
Write a program that will count the number of digits in an input integer up to value MAX_VALUE (2147483647). Thus, for an input of 5837 the output should be 4 digits Make sure that your program works for the numbers 0, 1, and 10. For the number 0, the output should be 1 digit
How const int *ourpointer differs from int const *ourpointer?
When does a 'this' pointer get created?
What are the different data types present in C++?
What is the size of a vector?
Why do we use using namespace std in c++?
What are virtual functions and what is its use?