Test your App Engine knowledge with a free interactive quiz — 26 questions with answers and explanations. No signup needed to play.
Question 1/12Score 0
What is the risk of setting `max_concurrent_requests` too high on an App Engine standard instance?
In this round
What is the risk of setting `max_concurrent_requests` too high on an App Engine standard instance?
What does `min_instances: 0` in automatic_scaling mean for a standard environment service?
What does each App Engine version + service URL like `v2-dot-api-dot-my-project.uc.r.appspot.com` let you do?
What is the key difference between the App Engine standard and flexible environments?
What is the effect of running `gcloud app versions delete v1 --service=default` after traffic has been fully shifted to v2?
You just ran `gcloud app deploy --no-promote --version=v2-canary`. What happens to live traffic?
What does this handler entry in app.yaml do?
handlers:
- url: /static
static_dir: public/static
secure: always
What happens each time you deploy to an App Engine service?
What is a practical reason to keep min_instances at 0 for a low-traffic internal admin tool on App Engine standard?
You need requests from the same client to consistently reach the same App Engine version during a canary rollout. Which split-by strategy should you use?
A background job needs to run asynchronously and retry automatically if it fails. Which App Engine-integrated primitive fits best?
How should an App Engine standard-environment app connect to a Cloud SQL database in the same project?