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 based on the size of the uploaded code zip file only
B. You pay only for the compute time consumed
C. You pay a flat monthly fee regardless of usage
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. AWS Step Functions
D. Amazon SNS

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

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

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

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

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

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

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

12 How should a stateless serverless function handle persistent data?

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

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

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

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 ECR
C. AWS Lambda
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. CORS
B. API Caching
C. Usage Plans
D. Throttling

16 What is a 'Layer' in AWS Lambda?

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

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

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

18 What happens if an asynchronous Lambda invocation fails?

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

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

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

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. Granting only the permissions necessary to perform a task
B. Removing all permissions from functions
C. Using only public subnets
D. Giving all functions Admin access to ensure they work

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

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

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

A. Use Provisioned IOPS
B. Use Reserved Concurrency
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. EC2 Launch Type
B. Hybrid Launch Type
C. Serverless 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.timeout = 0
C. process.env.DB_REUSE = true
D. context.callbackWaitsForEmptyEventLoop = false

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

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

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 OpsWorks
C. Amazon RDS
D. AWS EC2 Console

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

A. Up to 100 GB
B. Up to 10 GB
C. 512 MB only
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. Global
B. Edge-Optimized
C. Private
D. Regional

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

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

A. Cold start latency
B. Memory leaks
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 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 API Gateway
C. Amazon DynamoDB
D. Amazon S3

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

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

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

A. Fargate charges per instance per hour
B. Fargate is free
C. Fargate charges based on vCPU and memory resources consumed per second
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. Performance Efficiency
D. Sustainability

38 In API Gateway, what is 'Throttling'?

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

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

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

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. In Amazon RDS
C. On a physical USB drive
D. In an EC2 instance

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

A. Singleton Pattern
B. Strangler Fig Pattern
C. Factory Pattern
D. Adapter 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. Save them in the description field
B. Use AWS KMS (Key Management Service) to encrypt them
C. Write them in plain text in the console
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. HTTP Proxy
B. AWS Integration (Non-Proxy)
C. Lambda Proxy Integration
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 Timeout
D. Increasing the Memory allocation

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

A. A map of where AWS data centers are located
B. A diagram of the architecture
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 specific type of EC2 instance
B. A networking rule
C. The smallest deployable unit of computing in Kubernetes
D. A storage volume

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

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

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

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