A system administrator needs to create a new group named 'developers' with GID 1500 and add the user 'alice' to this group. Which set of commands accomplishes this?
Correct: groupadd creates the group with GID 1500, usermod appends alice to the supplementary group.
Why this answer
First create the group with the specific GID using groupadd -g, then add the user to the group using usermod -aG.