what is data Abstraction? and give example
Answer Posted / afjal ansari & shekhar ya
Abstraction is about reducing complexity and ignoring
unneccesary details.
| 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 the need of a destructor?
Do vectors start at 0?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
How long will it take to learn programming?
What is meant by forward referencing and when should it be used?
Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.
What is the output of the following program? Why?
Specify different types of decision control statements?
How is static data member similar to a global variable?
Explain the virtual inheritance in c++.
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
How much do c++ programmers make?
What is c++ mutable?
Can user-defined object be declared as static data member of another class?