what is data Abstraction? and give example
Answer Posted / kishore kumar
data abstraction is a process of representing the essential
features without including implementation details.
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the role of C++ shorthand's?
What is an inline function in c++?
What are the general quetions are in DEna bank manager IT/System interviews?
how can i access a direct (absolute, not the offset) memory
address?
here is what i tried:
wrote a program that ask's for an address from the user,
creates a FAR pointer to that adress and shows it. then the
user can increment/decrement the value in that address by
pressing p(inc+) and m(dec-).
NOW, i compiled that program and opened it twice (in 2
different windows) and gave twice the same address to it.
now look what happen - if i change the value in
one "window" of the program, it DOES NOT change in the
other! even if they point to the same address in the memory!
here is the code snippet:
//------------------------------------------------------
#include
How do you initialize a string in c++?
What is c++ similar to?
How do you save a c++ program?
What is one dimensional array in c++?
Can we get the value of ios format flags?
What operators can you overload in c++?
Differentiate between a constructor and a destructor in c++.
What are the differences between java and c++?
Is c++ a good first language to learn?
Which format specifier is used for printing a pointer value?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?