
Answer-first summary for fast verification
Answer: Deploy the website on App Engine and use traffic splitting.
The question involves testing three website designs by splitting traffic. App Engine's traffic splitting feature allows directing percentages of traffic to different versions or services. Option A is correct because deploying on App Engine with traffic splitting enables routing traffic between different versions (each with a design) seamlessly. Options C and D are incorrect as Cloud Functions is not suited for hosting full websites. Option B suggests separate services, which would require manual routing via dispatch.yaml, whereas traffic splitting (Option A) is a built-in, simpler method for this use case.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
What is the recommended approach for testing conversion rates between three different website designs when your site is deployed on Google Compute Engine?
A
Deploy the website on App Engine and use traffic splitting.
B
Deploy the website on App Engine as three separate services.
C
Deploy the website on Cloud Functions and use traffic splitting.
D
Deploy the website on Cloud Functions as three separate functions.
No comments yet.