1What is the primary goal of Cloud-Native architecture?
A.To build applications that run only on local servers
B.To build and run scalable applications in modern, dynamic environments
C.To increase the coupling between services
D.To rely exclusively on physical hardware management
Correct Answer: To build and run scalable applications in modern, dynamic environments
Explanation:
Cloud-native technologies empower organizations to build and run scalable applications in modern, dynamic environments such as public, private, and hybrid clouds.
Incorrect! Try again.
2In the context of microservices, what does 'Loosely Coupled' mean?
A.Services are physically connected via cables
B.Services must always be written in the same programming language
C.Services can be deployed and updated independently without affecting others
D.Services share a single database and memory space
Correct Answer: Services can be deployed and updated independently without affecting others
Explanation:
Loose coupling ensures that changes to one service do not require changes to or downtime for other services, enabling independent deployment.
Incorrect! Try again.
3Which component is primarily responsible for keeping track of the network locations of service instances?
A.API Gateway
B.Load Balancer
C.Circuit Breaker
D.Service Discovery
Correct Answer: Service Discovery
Explanation:
Service Discovery is the mechanism used to locate network addresses (IP and Port) of available service instances in a dynamic environment.
Incorrect! Try again.
4What is the main function of a Load Balancer in a cloud-native environment?
A.To distribute incoming network traffic across multiple servers
B.To compile code
C.To discovery service registry locations
D.To store session data permanently
Correct Answer: To distribute incoming network traffic across multiple servers
Explanation:
Load balancers distribute traffic across multiple instances to ensure reliability, performance, and to prevent any single instance from being overwhelmed.
Incorrect! Try again.
5What is 'Horizontal Scaling' (Scaling Out)?
A.Adding more instances of machines/services to the resource pool
B.Reducing the number of servers to save money
C.Replacing the hard drive with an SSD
D.Adding more power (CPU, RAM) to an existing machine
Correct Answer: Adding more instances of machines/services to the resource pool
Explanation:
Horizontal scaling involves adding more nodes or instances to a system to handle increased load, which is a core concept of cloud-native systems.
Incorrect! Try again.
6According to the CAP theorem, which two guarantees are often chosen in distributed cloud microservices favoring high availability?
A.Availability and Partition Tolerance
B.Consistency and Availability
C.Consistency and Partition Tolerance
D.Availability and Latency
Correct Answer: Availability and Partition Tolerance
Explanation:
In distributed cloud systems (like microservices), Partition Tolerance is non-negotiable. Systems often choose AP (Availability and Partition Tolerance) over strict Consistency to ensure the system remains up during network issues.
Incorrect! Try again.
7Which of the following is NOT one of the Twelve-Factor App methodologies?
A.Codebase
B.Sticky Sessions
C.Port Binding
D.Disposability
Correct Answer: Sticky Sessions
Explanation:
Sticky Sessions are generally discouraged in the 12-Factor methodology because they hinder statelessness. The methodology advocates for stateless processes.
Incorrect! Try again.
8In the Twelve-Factor App methodology, how should configuration be managed?
A.Hardcoded in the source code
B.Kept in a text file committed to the repo
C.Stored in the environment variables
D.Stored in a separate database table only
Correct Answer: Stored in the environment variables
Explanation:
The 12-Factor App methodology states that configuration should be stored in the environment to separate config from code.
Incorrect! Try again.
9What is 'Serverless' architecture?
A.A model where the cloud provider manages the allocation of machine resources dynamically
B.An architecture dependent on dedicated physical servers
C.An architecture where no servers exist at all
D.A system that runs entirely on the client's browser
Correct Answer: A model where the cloud provider manages the allocation of machine resources dynamically
Explanation:
Serverless (like AWS Lambda) doesn't mean no servers; it means developers do not have to manage, provision, or patch the servers.
Incorrect! Try again.
10Which Netflix tool is famous for randomly terminating instances in production to ensure system resilience?
A.Chaos Monkey
B.Hystrix
C.Zuul
D.Eureka
Correct Answer: Chaos Monkey
Explanation:
Chaos Monkey is a tool invented by Netflix to test the resilience of its IT infrastructure by intentionally disabling computers in its production network.
Incorrect! Try again.
11Which pattern involves a database per service rather than a shared database?
A.Database per Service
B.Data Warehouse
C.Shared Repository
D.Monolithic Database Pattern
Correct Answer: Database per Service
Explanation:
To ensure loose coupling, microservices usually follow the Database per Service pattern so that services are not tightly bound by a shared schema.
Incorrect! Try again.
12In Service Discovery, what is the role of a 'Service Registry'?
A.To store the database credentials
B.To maintain a database of available service instances
C.To balance the load between regions
D.To authenticate users
Correct Answer: To maintain a database of available service instances
Explanation:
A Service Registry (like Eureka or Consul) is a database that contains the network locations of service instances.
Incorrect! Try again.
13What is 'Client-Side Discovery'?
A.The client queries the Service Registry to get the location of a service instance
B.The client hardcodes the IP address of the server
C.The client connects to a Load Balancer which then routes the traffic
D.The client broadcasts a message to the entire network
Correct Answer: The client queries the Service Registry to get the location of a service instance
Explanation:
In Client-Side Discovery, the client is responsible for determining the network locations of available service instances by querying a registry.
Incorrect! Try again.
14Which of the following describes 'Vertical Scaling'?
A.Adding more CPU or RAM to an existing single server
B.Using a Content Delivery Network
C.Adding more machines to the cluster
D.Distributing the database across regions
Correct Answer: Adding more CPU or RAM to an existing single server
Explanation:
Vertical scaling (scaling up) involves increasing the capacity of a single machine, which has physical limits compared to horizontal scaling.
Incorrect! Try again.
15What does the 'Disposability' factor in the Twelve-Factor App methodology emphasize?
A.Fast startup and graceful shutdown
B.Deleting logs immediately
C.Code should be thrown away after use
D.Using temporary databases only
Correct Answer: Fast startup and graceful shutdown
Explanation:
Disposability means the application can be started or stopped rapidly. This facilitates fast scaling, rapid deployment, and robustness.
Incorrect! Try again.
16Amazon's 'Two-Pizza Team' rule is related to which aspect of microservices?
A.Database Sharding
B.API Rate Limiting
C.Load Balancing
D.Organizational Structure and Team Size
Correct Answer: Organizational Structure and Team Size
Explanation:
Amazon's rule states that a team should be small enough to be fed by two pizzas, promoting small, autonomous teams that own specific microservices.
Incorrect! Try again.
17What is a 'Cold Start' in Serverless computing?
A.Restarting a frozen physical server
B.Booting up a computer in a cold server room
C.The latency experienced when a function is invoked for the first time or after a period of inactivity
D.The initial configuration of a cloud account
Correct Answer: The latency experienced when a function is invoked for the first time or after a period of inactivity
Explanation:
Cold start refers to the delay when the cloud provider has to spin up a new container to run a function that hasn't been called recently.
Incorrect! Try again.
18How does Uber manage the complexity of thousands of microservices?
A.Manually configuring IP addresses
B.Using a service mesh and rigorous RPC standards
C.By reverting to a monolith
D.Using a single shared database
Correct Answer: Using a service mesh and rigorous RPC standards
Explanation:
Uber utilizes sophisticated tooling, service meshes, and standardized Remote Procedure Calls (RPC) to manage communication between thousands of services.
Incorrect! Try again.
19In the Twelve-Factor App, how should 'Dependencies' be handled?
A.They should be explicitly declared and isolated
B.They should be implicitly relied upon based on the OS
C.They should be copied manually into the folder
D.They should be ignored
Correct Answer: They should be explicitly declared and isolated
Explanation:
Dependencies must be explicitly declared (e.g., via a manifest like package.json or pom.xml) and isolated to ensure consistent execution environments.
Incorrect! Try again.
20What is the 'Backing Services' factor in the Twelve-Factor App?
A.Running background services on the client machine
B.Services that are hardcoded into the application logic
C.Services that back up data to tape drives
D.Treating backing services (databases, queues) as attached resources
Correct Answer: Treating backing services (databases, queues) as attached resources
Explanation:
Backing services (like databases, caching systems, message queues) should be treated as attached resources accessed via a URL or other locator stored in config.
Incorrect! Try again.
21Which technology is most commonly associated with container orchestration in cloud-native development?
A.VirtualBox
B.Apache Tomcat
C.VMware
D.Kubernetes
Correct Answer: Kubernetes
Explanation:
Kubernetes is the industry standard for container orchestration, automating deployment, scaling, and management of containerized applications.
Incorrect! Try again.
22What does 'Polyglot Persistence' mean in the context of Data Management?
A.Using a single database for all data types
B.Writing data in multiple languages
C.Persisting data only in English
D.Using different data storage technologies to handle different data storage needs
Correct Answer: Using different data storage technologies to handle different data storage needs
Explanation:
Polyglot persistence allows microservices to use the best database tool for the specific job (e.g., SQL for transactions, NoSQL for documents, Redis for caching).
Incorrect! Try again.
23The 'Build, Release, Run' factor dictates that:
A.Build, release, and run stages must be strictly separated
B.Releases should not have unique IDs
C.You can change code directly in the running stage
D.Building and running happen simultaneously
Correct Answer: Build, release, and run stages must be strictly separated
Explanation:
Strict separation ensures that code changes are processed into an immutable build, combined with config to create a release, which is then executed.
Incorrect! Try again.
24What is the primary benefit of Autoscaling?
A.It reduces the storage size of the database
B.It ensures resources match the current demand automatically to optimize cost and performance
C.It guarantees code quality
D.It automatically writes unit tests
Correct Answer: It ensures resources match the current demand automatically to optimize cost and performance
Explanation:
Autoscaling dynamically adjusts resources based on load, saving money during low traffic and maintaining performance during high traffic.
Incorrect! Try again.
25In cloud-native apps, logs should be treated as:
A.Database tables
B.Emails sent to the admin
C.Event streams
D.Text files stored on the local hard drive
Correct Answer: Event streams
Explanation:
The Twelve-Factor App methodology states that logs should be treated as a stream of aggregated, time-ordered events, rather than managing log files manually.
Incorrect! Try again.
26Which consistency model is most common in cross-microservice operations?
A.Eventual Consistency
B.ACID Consistency
C.Immediate Consistency
D.Strong Consistency
Correct Answer: Eventual Consistency
Explanation:
Due to the distributed nature of microservices and the CAP theorem, systems often rely on eventual consistency to maintain high availability and performance.
Incorrect! Try again.
27Netflix Hystrix is an implementation of which pattern?
A.Observer Pattern
B.Circuit Breaker Pattern
C.Factory Pattern
D.Singleton Pattern
Correct Answer: Circuit Breaker Pattern
Explanation:
Hystrix is a library designed to control the interactions between distributed services by implementing the Circuit Breaker pattern to prevent cascading failures.
Incorrect! Try again.
28What is 'Dev/Prod Parity' in the Twelve-Factor App?
A.Production servers should be used for Development
B.Development should use Windows and Production should use Linux
C.Development and Production environments should be as similar as possible
D.Developers should have access to Production data
Correct Answer: Development and Production environments should be as similar as possible
Explanation:
Dev/prod parity minimizes the time and gaps between development and production, preventing 'it works on my machine' issues.
Incorrect! Try again.
29Which of the following is a key characteristic of Serverless architectures (FaaS)?
A.Fixed monthly cost regardless of usage
B.Stateless, ephemeral functions
C.Manual OS patching
D.Long-running stateful processes
Correct Answer: Stateless, ephemeral functions
Explanation:
Serverless functions are designed to be short-lived (ephemeral) and stateless, spun up to handle an event and then spun down.
Incorrect! Try again.
30What is the 'Port Binding' factor?
A.Using only port 80 for all services
B.The app is completely self-contained and exports a service via port binding
C.Hardcoding ports in the code
D.Services should rely on a separate web server container (like Tomcat) injected at runtime
Correct Answer: The app is completely self-contained and exports a service via port binding
Explanation:
The application should not rely on the runtime injection of a webserver; instead, it should bind to a port and listen for requests directly.
Incorrect! Try again.
31How do cloud-native applications typically handle 'Admin Processes'?
A.They are handled manually by editing the database
B.They are strictly forbidden
C.They run as one-off processes
D.They are embedded in the main request loop
Correct Answer: They run as one-off processes
Explanation:
Admin tasks (like database migrations) should run as one-off processes in an environment identical to the app's regular long-running processes.
Incorrect! Try again.
32In a Serverless environment, what usually triggers a function execution?
Serverless architectures are fundamentally event-driven; functions execute in response to specific triggers or events.
Incorrect! Try again.
33Which distributed data pattern manages transactions that span multiple microservices?
A.Two-Phase Commit (2PC)
B.Saga Pattern
C.Shared Database
D.Single Transaction Script
Correct Answer: Saga Pattern
Explanation:
The Saga pattern manages distributed transactions by executing a sequence of local transactions, with compensating transactions to undo changes if a step fails.
Incorrect! Try again.
34What challenge did Netflix face that led to the creation of Eureka?
A.They ran out of hard drive space
B.They needed to know the physical location of every server
C.They needed a new video compression algorithm
D.They needed a way for services to locate each other dynamically in AWS
Correct Answer: They needed a way for services to locate each other dynamically in AWS
Explanation:
Netflix created Eureka for Service Discovery to allow mid-tier load balancing and failover in the dynamic AWS cloud environment.
Incorrect! Try again.
35What is a 'Sidecar' pattern in cloud-native development?
A.A secondary database
B.Deploying a helper process alongside the main application container
C.A backup server
D.A method of pair programming
Correct Answer: Deploying a helper process alongside the main application container
Explanation:
The Sidecar pattern involves co-locating a helper container (for logging, proxying, or config) in the same pod/host as the main application container.
Incorrect! Try again.
36According to the 'Processes' factor of the 12-Factor App, applications should be:
A.Stateless and share-nothing
B.Dependent on sticky sessions
C.Stateful
D.Run as a single monolithic process
Correct Answer: Stateless and share-nothing
Explanation:
Applications should be stateless. Any data that needs to persist must be stored in a stateful backing service (like a database), not in the process memory.
Incorrect! Try again.
37Why is 'Concurrency' managed via the process model in 12-Factor Apps?
A.To prevent multiple users from logging in
B.To scale out by adding more process instances rather than making one process larger
C.To use threads exclusively
D.To save battery life
Correct Answer: To scale out by adding more process instances rather than making one process larger
Explanation:
The process model implies scaling horizontally (adding more processes) to handle increased load, which aligns with cloud-native scaling.
Incorrect! Try again.
38What is the primary role of an API Gateway in cloud-native architecture?
A.To replace the database
B.To generate frontend UI code
C.To act as a single entry point for clients, routing requests to appropriate microservices
D.To store the application data
Correct Answer: To act as a single entry point for clients, routing requests to appropriate microservices
Explanation:
An API Gateway aggregates backend services, handles routing, authentication, and rate limiting, presenting a unified interface to the client.
Incorrect! Try again.
39Which of the following describes 'Immutable Infrastructure'?
A.Servers are patched and updated in place
B.Infrastructure that cannot be deleted
C.Servers are never modified after deployment; they are replaced with new ones
D.Hardware that is physically secured
Correct Answer: Servers are never modified after deployment; they are replaced with new ones
Explanation:
Immutable infrastructure prevents configuration drift. Instead of updating a server, you build a new image and replace the old server.
Incorrect! Try again.
40In the context of Amazon's case study, what is the 'Service Interface' mandate?
A.All data and functionality must be exposed through service interfaces (APIs)
B.Only C++ can be used
C.Teams must communicate via email
D.Teams share database schemas directly
Correct Answer: All data and functionality must be exposed through service interfaces (APIs)
Explanation:
Jeff Bezos issued a mandate that all teams must expose their data and functionality through service interfaces, prohibiting direct linking or shared databases.
Incorrect! Try again.
41What is the 'Codebase' factor rule?
A.One codebase tracked in revision control, many deploys
B.Multiple codebases for one app
C.No revision control needed
D.Copy-pasting code between apps
Correct Answer: One codebase tracked in revision control, many deploys
Explanation:
A 12-factor app is always tracked in a version control system (like Git). There is a one-to-one correlation between the codebase and the app.
Incorrect! Try again.
42Which balancing algorithm sends requests sequentially to servers in a list?
A.Least Connections
B.IP Hash
C.Weighted Response Time
D.Round Robin
Correct Answer: Round Robin
Explanation:
Round Robin directs traffic to the first server, then the second, and so on, circling back to the beginning.
Incorrect! Try again.
43What is a disadvantage of Serverless architecture?
A.High maintenance of OS
B.Complexity of manual scaling
C.Vendor Lock-in
D.Paying for idle time
Correct Answer: Vendor Lock-in
Explanation:
Because serverless relies heavily on proprietary cloud provider features (AWS Lambda, Azure Functions), moving to another provider can be difficult.
CQRS separates the models for reading and writing data, allowing them to scale independently and be optimized separately.
Incorrect! Try again.
45How did Uber handle the transition from a monolithic architecture?
A.They outsourced development
B.They rewrote the whole app in one night
C.They stayed with the monolith
D.They broke the monolith into microservices based on business domains (e.g., passenger management, billing)
Correct Answer: They broke the monolith into microservices based on business domains (e.g., passenger management, billing)
Explanation:
Uber transitioned by decomposing their monolithic codebase into domain-driven microservices to handle their massive scale.
Incorrect! Try again.
46Which mechanism ensures a service instance is actually capable of handling requests before the Load Balancer sends traffic?
A.DNS lookup
B.Static routing
C.Health Checks
D.Random selection
Correct Answer: Health Checks
Explanation:
Load balancers perform health checks (pings) to ensure a backend server is up and running before routing traffic to it.
Incorrect! Try again.
47What does 'Elasticity' refer to in cloud computing?
A.The long-term storage capacity
B.The ability of the hardware to bend
C.The ability to rapidly provision and de-provision resources based on demand
D.The speed of the network cables
Correct Answer: The ability to rapidly provision and de-provision resources based on demand
Explanation:
Elasticity allows a system to grow and shrink resources automatically in real-time to match workload demand.
Incorrect! Try again.
48What is the relationship between Microservices and Containers?
A.Microservices must run on bare metal, not containers
B.Containers prevent microservices from communicating
C.Containers are a popular packaging technology for deploying microservices
D.They are the same thing
Correct Answer: Containers are a popular packaging technology for deploying microservices
Explanation:
While they are different concepts, containers (like Docker) provide the ideal isolation and portability required for deploying microservices.
Incorrect! Try again.
49A 'Circuit Breaker' enters the 'Open' state when:
A.A user logs in
B.The service is starting up
C.The service is healthy
D.The failure threshold is reached
Correct Answer: The failure threshold is reached
Explanation:
When failures exceed a certain threshold, the circuit breaker 'opens' to stop requests from reaching the failing service, allowing it time to recover.
Incorrect! Try again.
50Which of the following best describes the 'Simian Army' used by Netflix?
A.A customer support team
B.A team of security guards
C.A suite of automated tools to test system reliability by inducing failures
D.A video compression algorithm
Correct Answer: A suite of automated tools to test system reliability by inducing failures
Explanation:
The Simian Army (including Chaos Monkey) helps Netflix test their cloud infrastructure's reliability by intentionally causing various types of failures.