The difference between a method and a procedure is similar to the difference between strategy and tactics, in that the two are often confused, and understandably so. Perhaps the easiest way to think about it is to stipulate that procedure outlines the "what" of what needs to be done in order to accomplish a certain task, while the method explains exactly "how" it will be done.
Imagine that you are writing a procedure for announcing a new product launch. The procedure will include all the various different tasks that need to be undertaken as part of this launch. The first task might be, for example, "upload the press release to the website." This assumes that you know how to do such a thing; the procedure is an overview of the steps that need to be taken in order to accomplish the product launch announcement. The method by which a press release is uploaded to the website is a separate thing which would require a separate document, or would be taught to you in training. This is a much more detailed and practical area of business than the overarching procedure, which structures the plan.
Procedure: a subroutine ; a smaller program that is part of a main program. The procedure is executed when the main program calls it.Procedures eliminate the need to program the same thing more than once. If you know that one task will be performed more than once in your program, it is better to write a procedure to handle the task rather than duplicate the program code when the task is needed again. Also, a large program is easier to understand if it consists of procedures, each with a well-defined purpose.
Here is the definition for method:
A process by which a task is completed; a way of doing something; The implementation of an operation.
See eNotes Ad-Free
Start your 48-hour free trial to get access to more than 30,000 additional guides and more than 350,000 Homework Help questions answered by our experts.
Already a member? Log in here.