A maple-coop intern created eight separate Function apps for eight tiny related HTTP routes and now manages eight hosting identities. What should the developer recommend instead?
Select an answer to reveal the explanation.
Short Explanation
A function app is the apartment building; each function is a doorbell. Related maple-coop routes belong in one app with eight functions—not eight entire apps and eight bills. One trigger per function still holds.
Full Explanation
An Azure Functions app is the hosting unit that shares runtime, settings, and identity. Individual functions are executable units, each with exactly one trigger. Creating a separate function app per tiny related route multiplies operational overhead without exam-relevant benefit. Logic Apps and AKS are out of scope for this Functions configure skill.