Multiple choice Which command would assign the permissions drwxrwxr-x to the temp directory? chmod 775 temp chmod 700 temp chmod 755 temp chmod 766 temp Reveal answer Fill a bubble to check yourself A Correct answer Explanation Permissions are represented by octal digits: 4 for read, 2 for write, and 1 for execute. The permission drwxrwxr-x corresponds to 7 (4+2+1) for owner, 7 (4+2+1) for group, and 5 (4+1) for others, resulting in 775.