what is data Abstraction? and give example
Answer Posted / ravin
data abstraction is a method to represent essential features of a data without including background details or unimportant matter.
a function/process used to define the use of this data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the two main roles of operating system?
Why c++ is so important?
What is istream and ostream in c++?
If dog is a friend of boy, is boy a friend of dog?
Why is it called c++?
Is it possible for a member function to use delete this?
What are the comments in c++?
What are the 3 levels of programming languages?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
What is & in c++ function?
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
What is the difference between while and do while loop? Explain with examples.
What is the use of setfill in c++?
When you overload member functions, in what ways must they differ?
what is upcasting in C++?