OA. free
Free
Accenture Core Computer Science Core Computer Science Medium

Choose the description that is incorrect regarding serverless architecture.

Accenture technical mcq question, verified with a worked answer. Free to practise - no sign-up.

Choose the description that is incorrect regarding serverless architecture.

Choose one option.
Show answer & explanation
Answer: C. Even when instances scale up, serverless architecture has the feature of zero-second initialization, allowing the application to start processing requests instantly.

Option C is incorrect because serverless architecture does NOT guarantee zero-second initialization. Cold starts are a well-known limitation in serverless computing—when a function is invoked after being idle, there is latency as the runtime environment spins up. This cold start delay can range from hundreds of milliseconds to several seconds depending on the platform and language. Options A, B, and D accurately describe serverless characteristics: on-demand execution and cost reduction (A), usage-based billing (B), and limited low-level OS tuning compared to IaaS (D).

Step-by-step Derivation:

  1. Evaluate each statement against documented serverless architecture properties.
  2. Option A: Correct—serverless functions execute on-demand and scale elastically, reducing idle costs.
  3. Option B: Correct—pay-per-execution model bills only when functions run; no requests = no charges.
  4. Option C: Incorrect—cold starts are a known drawback; initialization is NOT instantaneous when scaling up after inactivity. This is a trade-off of the serverless model.
  5. Option D: Correct—serverless abstracts infrastructure; you cannot tune kernel parameters or OS-level settings as freely as IaaS, sacrificing control for convenience.
  6. Answer: C is the only incorrect description.