Difference between Abstraction and encapsulation in C++?


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

Post New Answer

More C++ General Interview Questions

Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  


Can we delete this pointer in c++?

0 Answers  


What are the basic data types used in c++?

0 Answers  


Comment on c++ standard exceptions?

0 Answers  


Why c++ is created?

0 Answers  






What are advantages of using friend classes?

0 Answers  


What is a storage class?

0 Answers  


What is the difference between strcpy() and strncpy()?

0 Answers  


What is the full form of india?

0 Answers  


Can we declare destructor as static? Explain?

3 Answers  


Differentiate between a constructor and a destructor in c++.

0 Answers  


Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";

7 Answers   CTS,


Categories