
Answer-first summary for fast verification
Answer: Containerize your application and deploy it to a Cloud Run environment., Containerize your application and deploy it to a Cloud Run on GKE environment.
App Engine standard supports Python, Java, Node.js, PHP, Ruby, and Go, but not C#. To maintain serverless functionality while using C#, you can containerize your application and deploy it to Cloud Run or Cloud Run on GKE. These options abstract away infrastructure management, aligning with serverless principles. Deploying to Google Cloud Functions is not suitable as it also doesn't support C#. App Engine flexible and Google Kubernetes Engine are not serverless options. Cloud Run and Cloud Run on GKE are the correct choices for maintaining serverless functionality with C#.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
Your application is currently running in the App Engine standard environment, and you wish to enhance its functionality by adding a custom C# library. However, C# is not supported by App Engine standard. You aim to keep your application serverless. What are the two best actions to take?
A
Containerize your application and deploy it to a Cloud Run environment.
B
Split your application into different functions and deploy them as separate cloud functions in the Google Cloud Functions environment.
C
Containerize your application and deploy it to an App Engine flexible environment.
D
Containerize your application and deploy it to a Google Kubernetes Engine environment.
E
Containerize your application and deploy it to a Cloud Run on GKE environment.
No comments yet.