nerdexam
Linux_Foundation

LFCA · Question #2

Which of the following would be the most appropriate use-case for a Function as a Service (FaaS) implementation?

The correct answer is C. An event-driven application with dynamic scaling. Function as a Service (FaaS) is best suited for event-driven applications that require dynamic scaling, where functions are executed in response to specific triggers without managing underlying servers.

Submitted by hassan_iq· May 4, 2026Cloud Computing Fundamentals

Question

Which of the following would be the most appropriate use-case for a Function as a Service (FaaS) implementation?

Options

  • AAn application that requires a local file system
  • BAn application that continuously polls for work to process
  • CAn event-driven application with dynamic scaling
  • DAn application that requires a regionally- or globally-distributed file system

How the community answered

(40 responses)
  • A
    5% (2)
  • B
    13% (5)
  • C
    75% (30)
  • D
    8% (3)

Why each option

Function as a Service (FaaS) is best suited for event-driven applications that require dynamic scaling, where functions are executed in response to specific triggers without managing underlying servers.

AAn application that requires a local file system

FaaS functions are typically stateless and have ephemeral storage, making them unsuitable for applications that require a persistent local file system.

BAn application that continuously polls for work to process

FaaS is not ideal for applications that continuously poll for work, as this would keep the function 'warm' and incur continuous costs, negating the serverless cost-efficiency model.

CAn event-driven application with dynamic scalingCorrect

FaaS platforms are designed for serverless execution of short-lived, stateless functions that respond to events, automatically scaling resources up or down based on demand. This makes them ideal for event-driven architectures where costs are optimized by paying only for actual computation time.

DAn application that requires a regionally- or globally-distributed file system

While FaaS functions can interact with distributed storage services, the FaaS itself does not natively provide a globally-distributed file system; such storage would be a separate, integrated service.

Concept tested: FaaS use cases and characteristics

Source: https://learn.microsoft.com/en-us/azure/architecture/guide/technology-choices/compute-decision-tree#function-as-a-service-faas

Topics

#FaaS#Serverless#Cloud Computing#Event-driven Architecture

Community Discussion

No community discussion yet for this question.

Full LFCA Practice