CS 111 - 9/18/14 A method allows us to group together a section of code that is executed from start to finish whenever that method is called. Methods are useful as an organization tool If we need to perform an operation multiple times, if we put that in a method once, we then only have to call the method multiple times instead of writing the code multiple times.