What language is oop?
No Answer is Posted For this Question
Be the First to Post Answer
How to overload new operator in c++
What will happen when the following code is run: int x; while(x<100) { cout<<x; x++; } 1) The computer will output "0123...99" 2) The computer will output "0123...100" 3) The output is undefined
What exactly is polymorphism?
What is class encapsulation?
Can main method override?
monkey starts climbing up a tree 20ft tall,each hour ,it hops 3ft and slips back by 2ft .how much time it wil tak to reach top of the tree?
What is the purpose of enum?
What is the difference between abstraction and polymorphism?
Child cObj = new Parent() Wahts the output ?
What is difference between data abstraction and encapsulation?
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile
Which is not an object oriented programming language?