Complete the code to set the Cache-Control header to no-cache.
response.headers['Cache-Control'] = '[1]'
The Cache-Control header value no-cache tells browsers not to cache the response.
Complete the code to set the ETag header with a unique identifier.
response.headers['ETag'] = '[1]'
The ETag value must be a quoted string, so "12345" is correct.
Fix the error in setting Cache-Control to allow caching for 10 minutes.
response.headers['Cache-Control'] = '[1]'
The correct syntax for Cache-Control max age is max-age=600 (600 seconds = 10 minutes).
Fill both blanks to set Cache-Control to private and ETag to "abc123".
response.headers['Cache-Control'] = '[1]' response.headers['ETag'] = '[2]'
Cache-Control should be set to private to restrict caching to a single user.
ETag must be a quoted string like "abc123".
Fill all three blanks to set Cache-Control to no-store, ETag to "xyz789", and add a custom header X-Custom.
response.headers['Cache-Control'] = '[1]' response.headers['ETag'] = '[2]' response.headers['X-Custom'] = '[3]'
no-store tells browsers not to store any cache.
ETag must be quoted like "xyz789".
Custom headers can have any string value like custom-value.