Question 4
In the following code snippet, which values should replace option1 and option2 so that the cookie is sent only over HTTPS and is restricted from cross-site requests?
secure=True and samesite='Strict'
secure=False and samesite='Strict'
secure=True and samesite='None'
secure=False and samesite='Lax'