Question: Of the four GCP options that are aligned with where the code needs to run, App Engine is:
- The infrastructure-centric solution
- The serverless logic solution
- In the middle (cluster)
- The platform-centric solution
Explanation
App Engine provides a managed application platform for building and deploying web applications. It abstracts server provisioning, infrastructure management, and scaling so application code can run without direct virtual machine administration. This aligns with Platform as a Service, where the runtime environment is managed by Google Cloud. Its value is reducing operational responsibility while supporting faster application deployment.
Why the other options are incorrect
Infrastructure-centric describes Compute Engine, where virtual machine control is the focus.
Serverless logic describes Cloud Functions, which runs event-driven functions.
Cluster describes Google Kubernetes Engine, which manages containerized workloads with Kubernetes.
Source for verification
https://docs.cloud.google.com/appengine/docs/an-overview-of-app-engine
https://cloud.google.com/appengine/docs/standard/runtime
The answer(s) to the question is highlighted in the BOLD text above. You can also find more questions and answers related to the exams on the "Google Cloud Platform Business Professional" page.