Unit 6 - Practice Quiz

INT364 50 Questions
0 Correct 0 Wrong 50 Left
0/50

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

A. To orchestrate and manage Docker containers
B. To store Docker images
C. To run Lambda functions
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. Sustainability
B. Reliability
C. Operational Excellence
D. Cost Optimization

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

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

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. Models
C. Stages
D. Methods

12 How should a stateless serverless function handle persistent data?

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

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

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

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

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

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. Usage Plans
C. CORS
D. API Caching

16 What is a 'Layer' in AWS Lambda?

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

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

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

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. The entire AWS region shuts down
D. AWS Lambda automatically retries the invocation twice

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

A. It should produce different results every time
B. It doesn't matter
C. It should produce the same result if executed multiple times with the same input
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. Up to 10 GB
B. 512 MB only
C. Up to 100 GB
D. Unlimited

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

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

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

A. Regional
B. Private
C. Edge-Optimized
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. Direct Connect
B. VPC Link
C. NAT Gateway
D. Internet Gateway

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

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

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

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

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

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

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

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

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 charges based on the number of users
D. Fargate is free

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. Performance Efficiency
C. Security
D. Sustainability

38 In API Gateway, what is 'Throttling'?

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

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

A. Queueing requests when the system is cold
B. Storing events that failed to process after all retry attempts
C. Storing successfully processed events
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. Amazon CloudFront
B. AWS Config
C. Amazon Route 53 (Public)
D. AWS Cloud Map

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

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

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

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

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

A. It acts as a load balancer
B. It monitors the cost of the cluster
C. It is a blueprint that describes how a docker container should launch
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. Save them in the description field
C. Store them in the function code comments
D. Use AWS KMS (Key Management Service) to encrypt them

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. Mock Integration
B. Lambda Proxy Integration
C. AWS Integration (Non-Proxy)
D. HTTP Proxy

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

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

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

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

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

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

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

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

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

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