Unit 6 - Practice Quiz

INT364

1 What is the primary characteristic of a 'Serverless' architecture regarding infrastructure management?

A. Developers must manually patch the operating system
B. There are no physical servers involved at all
C. Infrastructure management is offloaded to the cloud provider
D. Servers are managed by a third-party consultant

2 Which of the following is a key benefit of the AWS Lambda pricing model?

A. You pay a flat monthly fee regardless of usage
B. You pay only for the compute time consumed
C. You pay for the idle time when code is not running
D. You pay based on the size of the uploaded code zip file only

3 In the context of AWS Lambda, what is a 'Cold Start'?

A. The time it takes to upload code to AWS
B. The latency experienced when a function is invoked after being idle
C. The process of rebooting the entire AWS region
D. Starting a function using the AWS CLI

4 Which AWS service allows you to create, publish, maintain, monitor, and secure APIs at any scale?

A. AWS Lambda
B. Amazon API Gateway
C. Amazon SNS
D. AWS Step Functions

5 What is the maximum execution timeout limit for a single AWS Lambda function invocation?

A. 5 minutes
B. 15 minutes
C. 1 hour
D. 24 hours

6 When configuring AWS Lambda, how is CPU power allocated?

A. You select the number of vCPUs directly
B. It is allocated proportionally to the amount of memory configured
C. It is determined by the size of the code package
D. It is fixed for all functions regardless of configuration

7 Which AWS service is a serverless compute engine for containers that works with both Amazon ECS and Amazon EKS?

A. Amazon EC2
B. AWS Fargate
C. AWS Beanstalk
D. Amazon Lightsail

8 In a microservices architecture, what is the primary role of Amazon ECS?

A. To store Docker images
B. To run Lambda functions
C. To orchestrate and manage Docker containers
D. To act as an API Gateway

9 Which principle of the Well-Architected Framework is addressed by using AWS X-Ray in a serverless application?

A. Cost Optimization
B. Operational Excellence
C. Sustainability
D. Reliability

10 What is the purpose of an 'Execution Role' in AWS Lambda?

A. To allow users to login to the Lambda console
B. To define which users can delete the function
C. To grant the Lambda function permissions to access other AWS services
D. To encrypt the function code

11 Which feature of Amazon API Gateway allows you to route requests to different versions of your API (e.g., prod, dev)?

A. Resources
B. Stages
C. Methods
D. Models

12 How should a stateless serverless function handle persistent data?

A. Store it in the function's local file system (/tmp) permanently
B. Keep it in a global variable within the code
C. Store it in an external stateful service like Amazon DynamoDB or S3
D. Data cannot be persisted in serverless architectures

13 What is 'Lambda Proxy Integration' in API Gateway?

A. A way to cache API responses
B. A setup where the raw request is passed directly to Lambda and the function handles the response format
C. A method to use EC2 instances as proxies
D. A security feature to hide the Lambda ARN

14 Which AWS container service is best suited for users who want to use Kubernetes without managing the control plane?

A. Amazon ECS
B. Amazon EKS
C. AWS Lambda
D. Amazon ECR

15 To optimize costs in a high-traffic serverless API, what feature of API Gateway should be enabled to reduce the number of calls to the backend Lambda?

A. Throttling
B. API Caching
C. CORS
D. Usage Plans

16 What is a 'Layer' in AWS Lambda?

A. A security group setting
B. A mechanism to pull in additional code or libraries separately from the main deployment package
C. A versioning tool for API Gateway
D. A backup of the function code

17 Which Well-Architected principle suggests using 'asynchronous' design patterns (like SQS) to decouple serverless components?

A. Reliability
B. Cost Optimization
C. Security
D. Sustainability

18 What happens if an asynchronous Lambda invocation fails?

A. It is discarded immediately
B. It returns a 500 error to the user immediately
C. AWS Lambda automatically retries the invocation twice
D. The entire AWS region shuts down

19 What is the purpose of Amazon ECR (Elastic Container Registry)?

A. To run containers
B. To store, manage, and deploy Docker container images
C. To load balance container traffic
D. To monitor container logs

20 Which architectural pattern is commonly used in serverless to handle complex workflows involving multiple Lambda functions?

A. Monolithic architecture
B. Orchestration using AWS Step Functions
C. Hard-coding calls inside functions
D. Manual triggering

21 Regarding Security in Serverless (Well-Architected), what is the 'Principle of Least Privilege'?

A. Giving all functions Admin access to ensure they work
B. Granting only the permissions necessary to perform a task
C. Removing all permissions from functions
D. Using only public subnets

22 Which mechanism can be used to authorize API Gateway requests using a Lambda function?

A. IAM Policy
B. Lambda Authorizer
C. Security Groups
D. NACLs

23 How can you mitigate the issue of 'noisy neighbors' when running microservices on AWS Lambda?

A. Use Reserved Concurrency
B. Use Provisioned IOPS
C. Use a larger EC2 instance
D. Use a Load Balancer

24 What is the 'Launch Type' in Amazon ECS where you manage the underlying EC2 instances?

A. Fargate Launch Type
B. EC2 Launch Type
C. Serverless Launch Type
D. Hybrid Launch Type

25 Which environment variable helps handle database connection reuse in AWS Lambda to improve performance?

A. context.callbackWaitsForEmptyEventLoop = false
B. context.timeout = 0
C. process.env.DB_REUSE = true
D. lambda.keepAlive = true

26 Ideally, how should a serverless function be designed regarding 'idempotency'?

A. It doesn't matter
B. It should produce the same result if executed multiple times with the same input
C. It should produce different results every time
D. It should only be executable once per day

27 Which tool allows you to define serverless applications using a simplified syntax which is then transformed into CloudFormation?

A. AWS SAM (Serverless Application Model)
B. AWS EC2 Console
C. Amazon RDS
D. AWS OpsWorks

28 What is the maximum amount of ephemeral storage (/tmp) available to a Lambda function (as of recent updates)?

A. 512 MB only
B. Up to 10 GB
C. Up to 100 GB
D. Unlimited

29 In a serverless architecture, where do application logs typically go by default?

A. A local text file
B. Amazon CloudWatch Logs
C. Amazon S3
D. They are deleted immediately

30 Which API Gateway endpoint type is best suited for clients located geographically close to a specific AWS region?

A. Edge-Optimized
B. Regional
C. Private
D. Global

31 To enable private communication between an API Gateway and a backend service in a VPC without exposing it to the internet, what should be used?

A. Internet Gateway
B. VPC Link
C. NAT Gateway
D. Direct Connect

32 What is 'Provisioned Concurrency' in AWS Lambda designed to solve?

A. High storage costs
B. Cold start latency
C. Security vulnerabilities
D. Memory leaks

33 Which service acts as a 'Service Mesh' to standardize how microservices communicate on AWS (ECS/EKS)?

A. AWS App Mesh
B. Amazon MQ
C. AWS Glue
D. Amazon Connect

34 When building a serverless web application, which service is commonly used to host static assets (HTML/CSS/JS)?

A. AWS Lambda
B. Amazon S3
C. Amazon API Gateway
D. Amazon DynamoDB

35 What is the primary constraint of the 'Lambda' processing model regarding processing time?

A. It is designed for long-running batch jobs (hours)
B. It is designed for short-lived, event-driven tasks
C. It must run continuously
D. It pauses during high traffic

36 How does AWS Fargate differ from the EC2 launch type in terms of pricing?

A. Fargate charges per instance per hour
B. Fargate charges based on vCPU and memory resources consumed per second
C. Fargate is free
D. Fargate charges based on the number of users

37 Which Well-Architected principle implies using Managed Services (like DynamoDB or SQS) over self-managed servers to reduce environmental impact?

A. Operational Excellence
B. Security
C. Sustainability
D. Performance Efficiency

38 In API Gateway, what is 'Throttling'?

A. Increasing the speed of the API
B. Limiting the number of requests a user can make per second
C. Blocking all traffic
D. Encrypting the data

39 What is a 'Dead Letter Queue' (DLQ) used for in Lambda?

A. Storing successfully processed events
B. Storing events that failed to process after all retry attempts
C. Queueing requests when the system is cold
D. Sending emails to developers

40 Which AWS service is used for service discovery in ECS to allow containers to find each other by name?

A. AWS Cloud Map
B. Amazon Route 53 (Public)
C. AWS Config
D. Amazon CloudFront

41 When defining a Lambda function in CloudFormation, where is the code usually located?

A. Hardcoded in the template (for very small functions) or in an S3 bucket
B. On a physical USB drive
C. In an EC2 instance
D. In Amazon RDS

42 Which architectural pattern involves replacing a monolithic application incrementally with microservices?

A. Strangler Fig Pattern
B. Adapter Pattern
C. Singleton Pattern
D. Factory Pattern

43 What is the function of the 'Task Definition' in Amazon ECS?

A. It acts as a load balancer
B. It is a blueprint that describes how a docker container should launch
C. It monitors the cost of the cluster
D. It installs the Docker engine

44 How can you secure environment variables in AWS Lambda that contain sensitive information?

A. Write them in plain text in the console
B. Use AWS KMS (Key Management Service) to encrypt them
C. Store them in the function code comments
D. Save them in the description field

45 Which integration type in API Gateway is necessary if you need to transform the client request body before sending it to the backend?

A. Lambda Proxy Integration
B. AWS Integration (Non-Proxy)
C. HTTP Proxy
D. Mock Integration

46 For a memory-intensive image processing microservice, which configuration change in Lambda will most likely improve execution speed?

A. Increasing the Timeout
B. Increasing the Memory allocation
C. Reducing the code size
D. Using Python instead of Node.js

47 What is 'Event Source Mapping' in AWS Lambda?

A. A map of where AWS data centers are located
B. A configuration that polls a stream or queue (like Kinesis or SQS) and invokes the function
C. A diagram of the architecture
D. A way to map IP addresses

48 When running microservices on EKS, what is a 'Pod'?

A. A specific type of EC2 instance
B. The smallest deployable unit of computing in Kubernetes
C. A storage volume
D. A networking rule

49 Which HTTP method is typically used in API Gateway to handle CORS preflight requests?

A. GET
B. POST
C. OPTIONS
D. DELETE

50 What is the primary benefit of using 'Aliases' in AWS Lambda?

A. They allow you to rename the function
B. They point to specific versions of a function, allowing for traffic shifting and rollback
C. They increase the memory limit
D. They automatically debug the code