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 |
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is the use of pointer in c++ with example?
What is a Default constructor?
Difference between const char* p and char const* p?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
how to swap two numbers with out using temp variable
12 Answers Global eProcure, TCS,
List the types of polymorphism in c++?
If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
Differentiate between a constructor and a method in C++.
What is the difference between while and do while loop?
What is c++ & why it is used?
Who made c++?