what is data Abstraction
Answers were Sorted based on User's Feedback
Answer / narasimulu24
Abstraction refers to the act of representing essential
features without including background process or
implementing details.
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / sumithra.a
Data Abstraction is the process of hiding unwanted details
from user.
| Is This Answer Correct ? | 6 Yes | 0 No |
Should I learn c++ c?
Can we use pointers in c++?
What is object in c++ example?
Is c++ high level programming language?
Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?
What is prototype in c++ with example?
Which field is used in c++?
Why do we use string in c++?
What is the difference between const and constexpr?
What is Name Decoration?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
Explain the differences between list x; & list x();.