Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: geek65

CNPA Certified Cloud Native Platform Engineering Associate Questions and Answers

Questions 4

Which CI/CD tool is specifically designed as a continuous delivery platform for Kubernetes that follows GitOps principles?

Options:

A.

TravisCI

B.

Argo CD

C.

CircleCI

D.

Jenkins

Buy Now
Questions 5

What does the latest tag usually represent in a container image registry?

Options:

A.

The most recently built image unless otherwise specified.

B.

A signed image that has passed all security validations.

C.

The only image tag that can be deployed to production systems.

D.

A system-generated version number based on Git history.

Buy Now
Questions 6

In the context of Agile methodology, which principle aligns best with DevOps practices in platform engineering?

Options:

A.

Customer involvement should be limited during the development process to avoid disruptions.

B.

Teams should continuously gather feedback and iterate on their work to improve outcomes.

C.

Teams should strictly adhere to initial project plans without making adjustments during development.

D.

Development and operations teams should remain separate to maintain clear responsibilities.

Buy Now
Questions 7

A platform team wants to let developers provision cloud services like S3 buckets and databases using Kubernetes-native APIs, without exposing cloud-specific details. Which tool is best suited for this?

Options:

A.

Cluster API

B.

Crossplane

C.

Helm

D.

OpenTofu

Buy Now
Questions 8

What is a key consideration during the setup of a Continuous Integration/Continuous Deployment (CI/CD) pipeline to ensure efficient and reliable software delivery?

Options:

A.

Using a single development environment for all stages of the pipeline.

B.

Implement automated testing at multiple points in the pipeline.

C.

Skip the packaging step to save time and reduce complexity.

D.

Manually approve each build before deployment to maintain control over quality.

Buy Now
Questions 9

Why is centralized configuration management important in a multi-cluster GitOps setup?

Options:

A.

It requires all clusters to have the exact same configuration, including secrets and environment variables, to maintain uniformity.

B.

It ensures consistent and auditable management of configurations and policies across clusters from a single Git repository or set of coordinated repositories.

C.

It eliminates the need for automated deployment tools like Argo CD or Flux since configurations are already stored centrally.

D.

It makes it impossible for different teams to customize configurations for specific clusters, reducing flexibility.

Buy Now
Questions 10

In a Kubernetes environment, what is the primary distinction between an Operator and a Helm chart?

Options:

A.

Operators are only for deploying applications, while Helm charts manage application resources.

B.

Helm charts use Custom Resource Definitions while Operators use static manifests.

C.

Operators handle ongoing management of custom resources while Helm charts focus on packaging and deployment.

D.

Both Operators and Helm charts are the same, just different names used in the community.

Buy Now
Questions 11

In a software deployment pipeline, what is a common purpose of having different environments like production, staging, and development?

Options:

A.

Allows teams to isolate changes and catch issues before reaching production.

B.

Lets developers work together on the same codebase more effectively.

C.

Helps streamline deployments by limiting testing to staging environments only.

D.

Supports testing features against different datasets without impacting live users.

Buy Now
Questions 12

In the context of observability, which telemetry signal is primarily used to record events that occur within a system and are timestamped?

Options:

A.

Logs

B.

Alerts

C.

Traces

D.

Metrics

Buy Now
Questions 13

In a GitOps workflow using Crossplane, how is infrastructure provisioned across multiple clusters?

Options:

A.

By using CI/CD pipelines to execute imperative scripts that create cloud infrastructure outside of Kubernetes in any cloud provider

B.

By defining infrastructure resources declaratively in Git, where Crossplane controllers reconcile and provision them automatically in target environments.

C.

By provisioning infrastructure manually in cloud provider consoles and documenting the steps in Git for future reference.

D.

By manually applying Crossplane manifests to each cluster using kubectl to provision resources as needed for the infrastructure.

Buy Now
Questions 14

A company is implementing a service mesh for secure service-to-service communication in their cloud native environment. What is the primary benefit of using mutual TLS (mTLS) within this context?

Options:

A.

Allows services to authenticate each other and secure data in transit.

B.

Allows services to bypass security checks for better performance.

C.

Enables logging of all service communications for audit purposes.

D.

Simplifies the deployment of microservices by automatically scaling them.

Buy Now
Questions 15

Which of the following statements describes the fundamental relationship between Continuous Integration (CI) and Continuous Delivery (CD) in modern software development?

Options:

A.

CI is a prerequisite for CD; CI automates the building and testing of code, and CD builds upon this by automating the release process.

B.

CI and CD are entirely separate practices; CI focuses on code quality, while CD focuses on infrastructure management.

C.

CD is a prerequisite for CI; CD automates the deployment of code and CI builds upon this by automating the integration of code changes.

D.

CI and CD are interchangeable terms; they both refer to the process of automating software release management.

Buy Now
Questions 16

During a CI/CD pipeline setup, at which stage should the Software Bill of Materials (SBOM) be generated to provide most valuable insights into dependencies?

Options:

A.

During testing.

B.

Before committing code.

C.

During the build process.

D.

After deployment.

Buy Now
Questions 17

What is a key cultural aspect that drives successful platform adoption in an organization?

Options:

A.

Mandating that all teams must use the platform without exceptions

B.

Keeping platform development separate from application teams.

C.

Prioritizing platform security over usability.

D.

Encouraging platform feedback loops from developers to improve usability.

Buy Now
Questions 18

In the context of platform engineering and the effective delivery of platform software, which of the following statements describes the role of CI/CD pipelines in relation to Software Bill of Materials (SBOM) and security scanning?

Options:

A.

SBOM generation and security scanning are particularly valuable for application software. While platform software may have different security considerations, these practices are highly beneficial within CI/CD pipelines for applications.

B.

CI/CD pipelines should integrate SBOM generation and security scanning as automated steps within the build and test phases to ensure early detection of vulnerabilities and maintain a clear inventory of components.

C.

CI/CD pipelines are designed to accelerate the delivery of platform software, and adding SBOM generation and security scanning would slow down the process, so these activities are better suited for periodic audits conducted outside of the pipeline.

D.

CI/CD pipelines are primarily for automating deployments; SBOM generation and security scanning are separate, manual processes performed after deployment.

Buy Now
Questions 19

During a Kubernetes deployment, a Cloud Native Platform Associate needs to ensure that the desired state of a custom resource is achieved. Which component of Kubernetes is primarily responsible for this task?

Options:

A.

Kubernetes Scheduler

B.

Kubernetes Etcd

C.

Kubernetes API Server

D.

Kubernetes Controller

Buy Now
Questions 20

In the context of Istio, what is the purpose of PeerAuthentication?

Options:

A.

Managing network policies for ingress traffic

B.

Defining how traffic is routed between services

C.

Securing service-to-service communication

D.

Monitoring and logging service communication

Buy Now
Questions 21

As a Cloud Native Platform Associate, which of the following is the best example of a self-service use case that should be implemented within a cloud platform?

Options:

A.

A manual request process for acquiring additional storage resources.

B.

An internal wiki for documenting best practices in cloud usage.

C.

An automated resource provisioning system to spin up environments on demand.

D.

A centralized dashboard for monitoring application performance.

Buy Now
Questions 22

Which Kubernetes feature allows you to control how Pods communicate with each other and external services?

Options:

A.

Pod Security Standards

B.

Network Policies

C.

Security Context

D.

Role-based access control (RBAC)

Buy Now
Questions 23

A Cloud Native Platform Engineer is tasked with improving the integration between teams through effective API management. Which aspect of API-driven initiatives is most crucial for fostering collaboration in platform engineering?

Options:

A.

APIs must be documented properly to ensure all teams understand how to use them.

B.

APIs should be released without versioning to simplify maintenance.

C.

APIs should be tightly coupled to specific teams to enforce accountability.

D.

APIs should be designed to be as complex as possible to accommodate all potential use cases.

Buy Now
Questions 24

In a GitOps workflow, what is a secure and efficient method for managing secrets within a Git repository?

Options:

A.

Use environment variables to manage secrets outside the repository.

B.

Use a secrets management tool and store references in the repository.

C.

Encrypt secrets and store them directly in the repository.

D.

Store secrets in plain text within the repository.

Buy Now
Questions 25

In a CI/CD pipeline, why is a build artifact (e.g., a Docker image) pushed to an OCI-compliant registry?

Options:

A.

To store the image in a central registry so deployment environments can pull it for release.

B.

To allow the container image to be analyzed and transformed back into source code.

C.

To publish versioned artifacts that can be tracked and used to inform users of new releases.

D.

To enable the registry service to execute automated tests on the uploaded container image.

Buy Now
Exam Code: CNPA
Exam Name: Certified Cloud Native Platform Engineering Associate
Last Update: Sep 12, 2025
Questions: 85
CNPA pdf

CNPA PDF

$29.75  $84.99
CNPA Engine

CNPA Testing Engine

$35  $99.99
CNPA PDF + Engine

CNPA PDF + Testing Engine

$47.25  $134.99