in reply to which use for any Perl elements?

Another place where AUTOLOAD can be useful, apart from TedYoung's suggestion, is when you are implementing a remote invocation handler.

The problem: you want your code to use regular funciton calls, but run on a remote machine.

The solution: write an AUTOLOAD routine that catches each request of this type, checks it against a list of valid commands to run, sends the request and the parameters over the wire somehow to the other end, and communicates the results. (There can be many variations of this idea; a common one being to put the validation on the server side of things. This is actually better design, because a server should generally not trust just anything a client gives it.)

On the other side, you have to actually run some function by its name. This, if you've been reading <cite>Advanced Perl Programming</cite>, is closely related to symbol table stuff, although you don't necessarily pass a typeglob around explicitly. And although you didn't ask about it, it is also an example of a good time for turninig off use strict :)

As for END blocks, they're convenient places to place cleanup code. Delete temporaray files, close database connections... of course, if your code is simple and has one possible flow, you may not need this.