Which TWO commands can change the primary group of an existing user?
`usermod -aG` adds the user to a supplementary group, not the primary group.
Why this answer
None of the listed commands change the primary group of an existing user. The correct commands are `usermod -g` to change the primary group directly, or `groupmod -g` after ensuring the user is the only member of the group.
Exam trap
The trap is assuming that `usermod -aG` or `gpasswd -a` can change the primary group when they actually manage supplementary group membership only.