menu search
brightness_auto
Ask or Answer anything Anonymously! No sign-up is needed!
more_vert
Why are object oriented programming concepts so important? What is its significance? 

8 Answers

more_vert
 
done_all
Best answer
Object-oriented programming provides a higher level for programmers to envision and develop their applications. Without attempting to define the concept, we merely note that one deals with objects and methods. An object might be a window, and a method might be to display the window.

Object Oriented programming is used to structure a software program into simple, reusable pieces of code blueprints, which are used to create individual instances of objects.

Object oriented programming is important because-

1. Its function and modules that are written by user can be reused by other user without any  modification.

2. Through this we can eliminate redundant code and extend the use of existing classes.

3. The programmer can hide the data and functions in a class from other classes.

4. It helps the programmer to build the secure programs.

5. It makes it easy to maintain and modify existing code as new objects can be created with small differences to existing ones.

6. The give problem can be viewed as collection of different objects. Each object is responsible for a specific task. The problem is solved by interfacing the objects. It reduces the complexity of the program design.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
more_vert
OOP or object oriented program is a module which provides a way of molding programs by dividing memory areas of all data and functions that can be used as templates for creating copies of such modules on demand.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
more_vert
Evn I have studied it in my 11th 

Oops are significant as it used objects and class as main blocks of programming

Oops make it easy for us to communicate with computer 

As the older languages were very difficult like cobol.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
more_vert
Object-oriented programming is a programming paradigm based on the concept of "objects", which can contain data and code: data in the form of fields, and code, in the form of procedures. A feature of objects is that an object's own procedures can access and often modify the data fields of itself.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
more_vert
OOP stands for Object-Oriented Programming. Procedural programming is about writing procedures or functions that perform operations on the data, while object-oriented programming is about creating objects that contain both data and functions. ... OOP provides a clear structure for the programs.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
more_vert
Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects", which can contain data and code to manipulate that data. The principles of OOP include encapsulation, inheritance, and polymorphism, which enable programmers to create modular, reusable code.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
more_vert
Objectoriented programming is a way of programming thatbased on the idea of an object model. This means that objects are objects that are both working and non-working objects. Worked-hip is created when an object is used in a program that is not the only object in the program, but when an object is used in a program that is. Non-working objects are created when an object is used in a program that is not part of the object model. They are created when an object is used in a program that is not part of the object model, but also when an object is used in a program that is. The two most famous object-oriented programming languages are Java and C++.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
more_vert
Object-oriented programming (OOP) is a computer programming model that organizes software design around data, or objects, rather than functions and logic. An object can be defined as a data field that has unique attributes and behavior.
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
Welcome to Answeree, where you can ask questions and receive answers from other members of the community.
...