I think your senior might have been confusing su and sudo. sudo allows you to run commands as the super user or another user, but only as long as rules have been previously been added to the sudoers file allowing you to run those commands. sudo can be configured to allow you to run the commands without being asked for a password.
su ("substitute user", often incorrectly called "super user") allows you to temporarily become the super user or any other user to run any commands as that user. You need the password for that user to use this, unless you are already logged in as the super user. Usually you would use su - to make it read the environment for that user as well, for example their .profile.
Annihilannic.