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
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
Is ca high or low level language?
What is the difference between a type-specific template friend class and a general template friend class?
What is long in c++?
What is pointer -to-members in C++? Give their syntax?
What is the oldest programming language?
Explain deep copy and a shallow copy?
What is c++ programming language?
What is the identity function in c++? How is it useful?
Where are setjmp and longjmp used in c++?
How does a C++ structure differ from a C++ class?
When does a 'this' pointer get created?
Can comments be longer than one line?
Define a nested class. Explain how it can be useful.
Is c++ platform dependent?