Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to identify the first step in a sign up workflow.
No-Code
The first step in a sign up workflow is to [1] the user information.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing to delete or ignore user information at the start.
Assuming encryption happens before collecting data.
✗ Incorrect
The sign up process begins by collecting user information such as name, email, and password.
2fill in blank
mediumComplete the code to describe the login verification step.
No-Code
During login, the system must [1] the entered password with the stored password.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Thinking the system deletes the password during login.
Assuming encryption happens at this step instead of comparison.
✗ Incorrect
Login requires comparing the entered password with the stored one to verify identity.
3fill in blank
hardFix the error in the description of password storage.
No-Code
Passwords should never be stored as plain text but should be [1] before saving.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Storing passwords as plain text.
Deleting or ignoring passwords instead of securing them.
✗ Incorrect
Passwords must be encrypted (hashed) before storage to protect user security.
4fill in blank
hardFill both blanks to describe the two-factor authentication step.
No-Code
After password verification, the system sends a [1] code to the user's [2] for extra security.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing the code type or destination.
Thinking the code is sent to the password.
✗ Incorrect
Two-factor authentication sends a verification code to the user's phone to add security.
5fill in blank
hardFill all three blanks to complete the description of a password reset workflow.
No-Code
To reset a password, the user must [1] their email, receive a [2] link, and then [3] a new password.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the order of steps.
Thinking the user deletes the password instead of resetting.
✗ Incorrect
The user enters their email, clicks the reset link sent, and then sets a new password.