Definition of Object Oriented Programming in single line?

Answer Posted / jilender singh

oops is a programing concept which support four basic
concept 1.abstraction 2. encapsulation 3.polymorphism and
fourth is inheritence.

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you achieve runtime polymorphism?

560


What is the oops and benefits of oops programming?

542


What is the main purpose of inheritance law?

659


Where You Can Use Interface in your Project

1415


What is debug class?what is trace class? What differences are between them? With examples.

1596






What are the three main types of variables?

593


Plese get me a perfect C++ program for railway/airway reservation with all details.

3416


class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash

1685


What is destructor give example?

593


Write a program to reverse a string using recursive function?

1782


What is an interface in oop?

585


What are two types of polymorphism?

602


What are the advantages of polymorphism?

566


write a C++ program for booking using constructor and destructor.

2038


if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?

2742