Multiple choice technology programming languages What does the command umask 123 do? It sets file owner permissions to read and write It sets the permissions of other users to read It sets group permissions to read and execute All of them Reveal answer Fill a bubble to check yourself D Correct answer Explanation The umask command sets file creation permissions by subtracting the mask from the default permissions. A umask of 123 subtracts 1 from owner, 2 from group, and 3 from others, affecting all three permission sets.