what is data Abstraction? and give example
Answer Posted / atul sharma
Data abstraction allowed only essential features like it
only execute the data member of an real word object of
particular class without background activity.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is polymorphism in c++?
what you know about c++?
What is ios class in c++?
What is nested class in c++?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
Difference between pass by value and pass by reference?
what is scupper?
Explain one method to process an entire string as one unit?
What is the difference between global variables and static varables?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What are member functions used in c++?
Define a constructor - what it is and how it might be called (2 methods)?
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
How is static data member similar to a global variable?
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?