What is AWS Lambda?
Answer: Lambda runs your code in response to events without you provisioning or managing servers. You upload a function as a zip or container image, choose a runtime and memory, and Lambda handles provisioning, scaling from zero to thousands of concurrent executions, and availability. You are billed per request and per GB-second of execution.
Why interviewers ask this: The framing to give is event-driven compute with no idle cost. Naming that CPU scales proportionally with configured memory — you cannot set them independently — is the detail that shapes almost every Lambda performance and cost decision.
