answersLogoWhite

0


Best Answer

Methods in many programming languages is actually the Functions or Subroutines, themselves. These are often referred to as 'methods'. * Function - a function is a sequence of commands or programming code that returns a value (sends a result back). Think of it as "What method would you use to add to numbers together?" * Subroutine (often referred to as a Sub) - a SUB is a sequence of commands or programming code, but it does NOT return a value. Think of this as "Save this file to the Hard Disk", or "Update the database". These two code sequences complete a series of task, but don't necessarily need to send anything back to the user (caller). These are both referred to as Methods. They are the method to the madness of a program, in many ways!

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

they are grouped/organized as objects. A class is the blueprint of the objects (the instances of that class created at run time).

With another characteristics of OOP, the inheritance, these data and methods may be "encapsulated" by a class called base class, to allow some other classes (derived classes) to extend from this base class to have those data or methods inheritedly, and no need to define them explicitly (again, i.e., no duplicate codes), yet have the option to override the original behaviors. (You may inherit certain behaviors from your parents, like snoring, except that yours is much louder)

But let's face it, not all classes will be in a single hierarchy tree (nor they should). One class may not have anything to do with another, and one just needs to use the method of another object to perform a task. The "responsibility" of an object is another "how", to organize data and methods in correct way (semantically speaking).

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

Function is module in a programing language which is perform an action.

method in object oriented programming
  1. In oops methods describe the event properties of an object.
  2. Object behaviour's is depend on Method (its define the class work).
This answer is:
User Avatar

User Avatar

Wiki User

14y ago

it is a programming language through which we can develop many programme easiest way

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

Method is a synonym for member-function. (Not in C, but in C++, Java etc)

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

Object is an instance of class.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What do you mean by object oriented programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What actually mean by object oriented programming Is C plus plus is a object oriented programming?

Just eat a watermellon!


What is full form of oop's?

Object Oriented Programming


Is PHP object oriented?

Yes - 'advanced' PHP programming uses Object Oriented Programming (OOP).


What is an essential of Object Oriented Programming?

The 3 essential concepts of Object Oriented Programming are:InheritanceEncapsulation &Polymorphism


What is the distinct difference between object oriented concept and object oriented programming?

Object oriented concepts are a generalisation of the object oriented principals (encapsulation, inheritance, polymorphism and abstraction) without specifying a particular implementation of those principals. Object oriented programming is the application of those principals through an object oriented programming language.


Is c is complete object oriented programming language?

No. C is not object oriented. C++ is object oriented.


Full form of oops?

The full form of OOP is Object-Oriented Programming.


What has the author Edmund W Faison written?

Edmund W. Faison has written: 'Borland C [plus plus] 4 object-oriented programming' 'Borland C++ 3 object-oriented programming' -- subject(s): Borland C++, C++ (Computer program language), Object-oriented programming (Computer science) 'BorlandC[plus plus] 4.5 object-oriented programming' -- subject(s): Borland C., C., Object-oriented programming (Computer science) 'Borland C++ 3.1 object-oriented programming' -- subject(s): Borland C++, C++ (Computer program language), Object-oriented programming (Computer science)


An object-oriented programming language is necessary to do object-oriented programming?

small talk yes java yes c++ no delphi no etc...


What is the components of OOPS?

Java is an object oriented programming language. The various object oriented concepts in it are: * Class * Object * Instance * Method * Inheritance * Polymorphism * Abstraction * Encapsulation etc...


How do you apply class diagram with programming languages which is not based on object-oriented like c?

You cannot. Class diagrams are only applicable to object oriented programming languages. C is not object oriented, but C++ is.


What is copy constructor in object oriented programming?

The purpose of constructor in object oriented programming is to initialize data. Likewise copy constructors are used to initialize an object with data from another object.