Google Cloud Professional Cloud Developer — Question 27
You plan to make a simple HTML application available on the internet. This site keeps information about FAQs for your application. The application is static and contains images, HTML, CSS, and Javascript. You want to make this application available on the internet with as few steps as possible.
What should you do?
Answer options
- A. Upload your application to Cloud Storage.
- B. Upload your application to an App Engine environment.
- C. Create a Compute Engine instance with Apache web server installed. Configure Apache web server to host the application.
- D. Containerize your application first. Deploy this container to Google Kubernetes Engine (GKE) and assign an external IP address to the GKE pod hosting the application.
Correct answer: A
Explanation
The correct answer is A because Google Cloud Storage is ideal for serving static websites with minimal setup. Options B, C, and D involve more complex configurations that are unnecessary for a simple static application, making them less efficient choices for this scenario.