Complete the code to create a new user account named 'alice'.
create_user [1]The command create_user alice creates a new user account named 'alice'.
Complete the command to grant read permission to user 'alice' on file 'report.txt'.
grant_permission [1] report.txt readThe command grant_permission alice report.txt read gives user 'alice' read access to the file 'report.txt'.
Fix the error in the command to revoke write permission from user 'bob' on 'data.csv'.
revoke_permission [1] data.csv writeThe command revoke_permission bob data.csv write correctly revokes write permission from user 'bob' on the file 'data.csv'.
Fill both blanks to check if user 'carol' has execute permission on 'script.sh'.
check_permission [1] [2] execute
The command check_permission carol script.sh execute checks if user 'carol' has execute permission on the file 'script.sh'.
Fill both blanks to create a dictionary mapping users to their permission levels for 'project.doc'.
permissions = {: {BLANK_2}} for {{BLANK_2}} in usersThe dictionary comprehension permissions = {user: permissions[user] for user in users} creates a mapping of each user to their permission level.