Answer :
When a user is created in Linux using the useradd command, the immediate state of the created account is locked.
- The useradd command can be invoked in other to create a new user account using the following command
sudo useradd fast_user
#fast_user is the name of the account created
- At this point, the account has been created but it will be locked until the required login details are set. This can be achieved using the line ;
sudo passwd fast_user
Therefore, an account created using the useradd command is in a locked state.
Learn more :https://brainly.com/question/12135504?referrer=searchResults