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. 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 only for the compute time consumed
B. You pay based on the size of the uploaded code zip file only
C. You pay for the idle time when code is not running
D. You pay a flat monthly fee regardless of usage

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

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

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

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

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

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

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

A. It is determined by the size of the code package
B. You select the number of vCPUs directly
C. It is allocated proportionally to the amount of memory configured
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. AWS Fargate
B. Amazon EC2
C. AWS Beanstalk
D. Amazon Lightsail

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

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

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

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

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

12 How should a stateless serverless function handle persistent data?

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

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. AWS Lambda
B. Amazon ECR
C. Amazon ECS
D. Amazon EKS

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

16 What is a 'Layer' in AWS Lambda?

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

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. The entire AWS region shuts down
B. AWS Lambda automatically retries the invocation twice
C. It returns a 500 error to the user immediately
D. It is discarded immediately

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

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

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

A. Hard-coding calls inside functions
B. Orchestration using AWS Step Functions
C. Manual triggering
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. IAM Policy
B. Lambda Authorizer
C. NACLs
D. Security Groups

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

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

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

A. EC2 Launch Type
B. Fargate 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. process.env.DB_REUSE = true
B. context.callbackWaitsForEmptyEventLoop = false
C. context.timeout = 0
D. lambda.keepAlive = true

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

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

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

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

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

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

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

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

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

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

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. NAT Gateway
C. VPC Link
D. Internet Gateway

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

A. Cold start latency
B. High storage costs
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. AWS Glue
C. Amazon MQ
D. Amazon Connect

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 must run continuously
B. It pauses during high traffic
C. It is designed for short-lived, event-driven tasks
D. It is designed for long-running batch jobs (hours)

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

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

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. Increasing the speed of the API
B. Blocking all traffic
C. Encrypting the data
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. Sending emails to developers
B. Storing successfully processed events
C. Storing events that failed to process after all retry attempts
D. Queueing requests when the system is cold

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. Amazon CloudFront
D. AWS Config

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

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

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

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

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

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

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

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

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. Reducing the code size
B. Using Python instead of Node.js
C. Increasing the Memory allocation
D. Increasing the Timeout

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

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

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

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

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

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

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

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