what is data Abstraction? and give example
Answer Posted / raghul
IT IS A PROCESS OF SEPARATING ESSENTIAL AND NON-ESSENTIAL INFORMATION ABOUT A CLASS OR OBJECT.
A CLASS OR OBJECT MAY HAVE NUMBER OF INFORMATION ASSOCIATED WITH IT.
FOR DIFFERENT USERS DIFFERENT SET OF INFORMATION
EXAMPLE:- #INCLUDE <IOSTREAM>
USING NAMESPACE STD
INT MAIN()
{
COUT<<"HELLO C++"<<END1;
RETURN 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which is most difficult programming language?
What is increment operator in c++?
What is scope operator in c++?
What are mutator methods in c++?
What is the benefit of encapsulation?
Which is best c++ or java?
What are put and get pointers?
What is difference between class and function?
What is the difference between ++ count and count ++?
What is the difference between new() and malloc()?
Which bit wise operator is suitable for turning off a particular bit in a number?
Explain the difference between overloading and overriding?
Explain the extern storage classes in c++.
What does flush do?
Why c++ is faster than java?