what is data Abstraction? and give example
Answer Posted / prathiba
data abstraction is a process of representing the essential
features without including implementation details.
| Is This Answer Correct ? | 1531 Yes | 140 No |
Post New Answer View All Answers
Is c++ a float?
Does c++ support exception handling?
Which c++ compiler is best?
Which is best ide for c++?
How can a called function determine the number of arguments that have been passed to it?
Please explain the reference variable in c++?
What is a try block?
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
Explain the difference between realloc() and free() in c++?
What are pointers used for c++?
Define whitespace in C++.
What is scope operator in c++?
What is a flag in c++?
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.