
Answer-first summary for fast verification
Answer: Upload your application to Cloud Storage.
The question asks for hosting a static website with minimal steps. Cloud Storage (Option A) is the best choice because it allows hosting static content (HTML, CSS, JS, images) directly by uploading files to a bucket, configuring permissions, and enabling static website hosting—requiring no complex setup. App Engine (Option B) is viable but involves additional steps like creating an app.yaml file and deploying, which is slightly more involved than Cloud Storage. Compute Engine (C) and GKE (D) require manual server setup or containerization, which are unnecessarily complex for a static site.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
You want to deploy a static HTML application (containing images, HTML, CSS, and JavaScript) to the internet with minimal steps. The application serves as an FAQ resource for your product.
What is the simplest way to host and publish this static website?
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.
No comments yet.