what is data Abstraction? and give example
Answer Posted / wizards
The main idea of data abstratcion is to give clear
seperation between properties of data and implementation
details. This results the properties of the data types are
visible to the user interface and hides implementation details.
| Is This Answer Correct ? | 41 Yes | 11 No |
Post New Answer View All Answers
Comment on local and global scope of a variable.
How do you declare a set in c++?
What is the difference between an external iterator and an internal iterator?
Do vectors start at 0 c++?
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
What is static class data?
Write a program which uses Command Line Arguments
What's the "software peter principleā?
Which is better c++ or java?
What is a try block?
Write a recursive program to calculate factorial in c++.
Is c++ vector a linked list?
What is ctime c++?
Can we delete this pointer in c++?
What are advantages of using friend classes?