What is Cloud Run?
Answer: Cloud Run is a fully managed serverless platform that runs stateless containers. You supply a container image that listens on the port given by the PORT environment variable; Cloud Run handles provisioning, TLS, scaling from zero to thousands of instances, and billing per 100 milliseconds of usage. It supports HTTP, gRPC, WebSockets and event-driven invocation.
Why interviewers ask this: The framing that scores is "any language, any library, as long as it is in a container and listens on a port" — that container freedom is what distinguishes it from Cloud Functions and from App Engine standard. Mentioning that it is built on Knative-compatible APIs shows depth.
