Multiple choice chmod 644 passwd What are permissions for the passwd file? User=rw Group=r Other=r User=r Group=r Owner=rw User=rwx Group=wite Other=write Add current user as owner for the file. Reveal answer Fill a bubble to check yourself A Correct answer Explanation In chmod 644, the octal digits represent permissions: 6 (read+write) for the owner, 4 (read) for the group, and 4 (read) for others. This matches User=rw, Group=r, Other=r.