what is data Abstraction? and give example
Answer Posted / guest
data abstraction is the process of representing essential
details not including inter nal details.example index of
the book
| Is This Answer Correct ? | 281 Yes | 50 No |
Post New Answer View All Answers
Is c++ an oop?
Explain overriding.
Can recursive program be written in C++?
What is the use of register keyword with the variables?
What is the difference between global variables and static varables?
Explain the differences between list x; & list x();.
What are the two main components of c++?
Which is not a valid keyword a) public b) protected c) guarded
What's the most powerful programming language?
What is the difference between a definition and a declaration?
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 Explain the difference between c++ and java. What doescout<<(0==0) print out
a) 0
b) 1
c) Compiler error: Lvalue required Can union be self referenced? Explain explicit container.