- Event-driven compute and architectural patterns have evolved to abstract away the runtime from the developer so that they can focus on writing business value into their code. Such a pattern is called what?
A) Platform as a Service (Paas)
B) Infrastructure as a Service (IaaS)
C) Functions as a Service (FaaS)
D) Mobile Backend as a Service (MBaaS)
- When creating a Lambda function, there are a number of configurable options. Which of the following is NOT a directly configurable option?
A) CPU cores
B) Memory allocation
C) Runtime
D) Execution timeout
- Lambda functions can be written in what programming language?
A) Node.js
B) Python
C) Java
D) Go
E) C#
F) Ruby
G) All of the above
- What would be a good method for enabling multiple environments for a Lambda function?
A) Deploy multiple copies of the function
B) Use environment aliases to point to a particular version
...