Bird
0
0

What happens when an AWS Lambda function is not triggered by any event?

easy📝 Conceptual Q11 of 15
AWS - Lambda
What happens when an AWS Lambda function is not triggered by any event?
AThe function does not run and no charges occur.
BThe function runs continuously in the background.
CThe function runs once every hour automatically.
DThe function runs only when manually started from the console.
Step-by-Step Solution
Solution:
  1. Step 1: Understand Lambda's event-driven model

    A Lambda function runs only when triggered by an event, such as an API call or file upload.
  2. Step 2: Consider billing and execution behavior

    If no event triggers the function, it does not execute and you are not charged.
  3. Final Answer:

    The function does not run and no charges occur. -> Option A
  4. Quick Check:

    Lambda runs only on events = C [OK]
Quick Trick: Lambda runs only on events, no event means no run [OK]
Common Mistakes:
  • Thinking Lambda runs continuously without events
  • Assuming Lambda runs on a schedule by default
  • Believing manual start is required for all executions

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes