Why must a folder be executable?

Permission for files: chmod 664 myFile // rw-rw-r-- And for folders: chmod 774 myFolder // rwxrwxr-- If I only use the "read and write" permission, the folders won't show their contents. What'...