+ 8
What is object oriented programming
oop
4 Respuestas
+ 1
in object oriented programming we use classes and objects,it binds the data and the functions into a single entity called an object
its main advantage is data security
+ 8
Object-oriented programming (OOP) is a programming language model organized around objects rather than "actions" and data rather than logic. Historically, a program has been viewed as a logical procedure that takes input data, processes it, and produces output data.
+ 2
Object Oriented Programming (OOP) is where we can make classes which act as blueprints for creating objects that have some properties (variables, methods).
Study about the concepts of Abstraction, Polymorphism, Inheritance and Encapsulation (shortened as A PIE) for more details.
These are not available in procedural or functional programming where the code is executed in a linear fashion.
- 1
Newtons method of Xnew can be used to find the root or the zero of a given number n
help me write algorithm for this.