Consider the following code: df = pd.DataFrame({“Player”:[“J…

Consider the following code: df = pd.DataFrame({“Player”:, “Score”:, “Games”: })df = df We want to only keep the rows of df which have a Score greater than 50 and Games more than 1. Which of the following code snippets could replace the ??? to accomplish this?

What will be the output of the following code: def authentic…

What will be the output of the following code: def authentication(user):    try:         if user != “Administrator”:            raise PermissionError(“User does not have permission”)            print(“Access denied!”)        else:            print(“Access granted”)    except Exception as e:       print(e)authentication(“Maintainer”)