what is data Abstraction? and give example
Answer Posted / aniruddha kalburgi.
Data Abstraction is the way of hiding the unessential data
to reduce the complexity in front of user of a computer. The
programmer can decide what the data to be hided or what part
is essential to shown to user...
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
What is abstract keyword in c++?
What is a v-table?
Why null pointer is used?
How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?
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. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
Where do I find the current c or c++ standard documents?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Name the implicit member functions of a class.
Is it possible to use a new for the reallocation of pointers ?
What does scope resolution operator do?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What is abstraction in c++?
What are guid? Why does com need guids?