Refer to the exhibit. An organization is using an internal application for printing documents that requires a separate registration on the website. The application allows format-free user creation, and users must match these required conditions to comply with the company’s user creation policy: -minimum length: 3 -usernames can only use letters, numbers, dots, and underscores -usernames cannot begin with a numberThe application administrator has to manually change and track these daily to ensure compliance.
A. odify code to return error on restrictions def return false_user(username, minlen)
B. utomate the restrictions def automate_user(username, minlen)
C. alidate the restrictions, def validate_user(username, minlen)
D. odify code to force the restrictions, def force_user(username, minlen)