See the solution below in Explanation. Explanation: Solution: groupadd ops useradd sara usermod -aG ops sara id sara Detailed Explanation: * groupadd creates the group. * useradd creates the user. * usermod -aG adds the user to a supplementary group without removing existing memberships. * id sara confirms the result.