The MPM directives in your httpd.conf are enclosed within IfModule
conditionals, which means they are only evaluated if the module is loaded.
You can find out which MPM your installation is currently using by
running the httpd command with the -l flag, e.g.:
/usr/sbin/httpd -l
It should show you something like `prefork.c' or `worker.c'.
-scott