what is data Abstraction? and give example
Answer Posted / ekta
data abstraction is act of representing essential features
without including background details or explaintation.
FOR EXAMPLE: SWITCH BOARD.. in this we only know that if we
press any switch any electric appliances start working but
we dont know the inner functionality of switch board like
its wire connection, line connection,and etc....
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
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 constant in c++ with example?
What is algorithm in c++ programming?
What is a lambda function c++?
Which should be more useful: the protected and public virtuals?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
What are the basic data types used in c++?
What are the important differences between c++ and java?
What is the purpose of ios::basefield in the following statement?
Why pointer is used in c++?
What is abstract keyword in c++?
program explaining feautures of c++
What is lvalue?
What is the difference between method overloading and method overriding in c++?
What is a static element?