Logotipo de DummyExamsDummyExams
Logotipo de CNCF

Práctica gratuita · sin registro

30 preguntas de práctica gratuitas de CNCF KCNA

Preguntas de práctica reales para el examen CNCF Kubernetes and Cloud Native Associate (KCNA), con respuestas y explicaciones detalladas. Actualizado en 2026.

Preguntas gratuitas

30

Puntuación de aprobado

75%

Duración del examen

90 minutos

Banco de preguntas

Más de 463 preguntas

A continuación tienes 30 preguntas de práctica reales para el examen CNCF Kubernetes and Cloud Native Associate (KCNA). Cada pregunta muestra la respuesta correcta y una explicación detallada cuando la revelas. Úsalas para medir tu preparación: si obtienes menos del 70 % en estas 30 preguntas, prevé al menos 4 semanas más de estudio antes de reservar.

Preguntas de práctica de KCNA

  1. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    What is the primary responsibility of kube-scheduler?

    A
    Store cluster configuration and state
    B
    Maintain network rules on each node
    C
    Assign newly created pods to nodes based on resource requirements and constraints
    D
    Execute container images on worker nodes
  2. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    etcd in a Kubernetes cluster is:

    A
    A container runtime
    B
    The default ingress controller
    C
    A distributed, consistent key-value store holding all cluster state
    D
    A load balancer for API requests
  3. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Which component runs on every worker node and ensures containers described in PodSpecs are running?

    A
    kube-controller-manager
    B
    kube-proxy
    C
    kubelet
    D
    cloud-controller-manager
  4. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    A DaemonSet is best used when you need to:

    A
    Run N replicas of a stateless web app
    B
    Run a batch job to completion
    C
    Run one pod per node (or subset of nodes) for cluster-wide agents
    D
    Run a one-shot task on a schedule
  5. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Which Service type exposes the service on each node's IP at a static port?

    A
    NodePort
    B
    LoadBalancer
    C
    ExternalName
    D
    ClusterIP
  6. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    You need to provide a database password to a pod. Which object is most appropriate?

    A
    A plain env var in the pod spec
    B
    PersistentVolume
    C
    ConfigMap
    D
    Secret
  7. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    A pod is stuck in Pending. Which of these is the LEAST likely cause?

    A
    A PersistentVolumeClaim cannot be bound
    B
    The container inside has crashed repeatedly
    C
    Taints on nodes the pod does not tolerate
    D
    Insufficient node CPU or memory
  8. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    A Deployment directly manages which object?

    A
    ReplicaSets
    B
    Pods
    C
    StatefulSets
    D
    DaemonSets
  9. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    What is the defining purpose of a StatefulSet vs a Deployment?

    A
    It performs rolling updates faster than a Deployment by skipping readiness checks
    B
    It provides stable network identities (predictable pod names) and stable persistent storage per replica
    C
    It enables horizontal scaling without an upper replica limit
    D
    It automatically provisions PersistentVolumes without needing a StorageClass
  10. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Which kubectl command applies configuration declaratively?

    A
    kubectl deploy file.yaml
    B
    kubectl run file.yaml
    C
    kubectl create -f file.yaml
    D
    kubectl apply -f file.yaml
  11. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Labels and selectors are used to:

    A
    Define resource limits
    B
    Identify and group objects, enabling loose coupling between them
    C
    Enforce pod-to-pod security
    D
    Encrypt data at rest
  12. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    A namespace in Kubernetes provides:

    A
    Separate etcd instances
    B
    Encrypted pod traffic
    C
    A scope for resource names, enabling multi-tenant division of a cluster
    D
    Strong security isolation by default
  13. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Which statement about Pods is true?

    A
    Each container in a pod has its own IP
    B
    A pod must contain exactly one container
    C
    Pods automatically survive node failures
    D
    Containers in a pod share the network namespace and can share volumes
  14. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    A PersistentVolumeClaim (PVC) represents:

    A
    A backup of pod data
    B
    A compressed log archive
    C
    A user's request for storage that binds to a PersistentVolume
    D
    A physical disk on a node
  15. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    An Ingress resource provides:

    A
    DNS resolution
    B
    HTTP/HTTPS routing rules from outside the cluster to internal Services
    C
    Container image storage
    D
    Pod-to-pod encryption
  16. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Which component maintains iptables/IPVS rules on nodes to implement the Service abstraction?

    A
    CoreDNS
    B
    kubelet
    C
    kube-scheduler
    D
    kube-proxy
  17. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Taints and tolerations are used to:

    A
    Automatically drain and cordon nodes during cluster upgrades
    B
    Limit the CPU and memory a pod is allowed to consume
    C
    Attract pods to specific nodes based on node labels
    D
    Repel pods from nodes unless the pod explicitly tolerates the taint
  18. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    A ReplicaSet's core responsibility is to:

    A
    Ensure a specified number of pod replicas are running at any time
    B
    Mount persistent storage
    C
    Schedule pods across zones
    D
    Perform rolling updates and rollbacks
  19. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    ConfigMaps should NOT be used for:

    A
    Feature flags
    B
    Non-sensitive env variables
    C
    Database passwords and API tokens
    D
    Application config files
  20. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    When a pod is deleted, its IP address:

    A
    Is tied to the pod name
    B
    Is released; a new pod gets a different IP
    C
    Is reserved for that pod if recreated
    D
    Persists for 5 minutes
  21. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Which is NOT a Kubernetes workload resource?

    A
    StatefulSet
    B
    Deployment
    C
    LoadBalancer
    D
    Job
  22. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    A CronJob creates:

    A
    A StatefulSet
    B
    A Deployment
    C
    Jobs on a time-based schedule
    D
    A ReplicaSet
  23. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    How do control plane components typically talk to worker nodes?

    A
    Through kube-proxy only
    B
    Via etcd replication
    C
    Directly via SSH
    D
    Through the kubelet on each node, which watches the API server
  24. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    The Horizontal Pod Autoscaler (HPA) scales based on:

    A
    CPU, memory, or custom/external metrics of pods
    B
    Image size
    C
    The number of nodes
    D
    Time of day
  25. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    RBAC permissions are granted by which pair of resources?

    A
    Roles/ClusterRoles and RoleBindings/ClusterRoleBindings
    B
    Policies and Bindings
    C
    Users and Groups
    D
    Namespaces and Labels
  26. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Which statement is true about the container image tag latest?

    A
    Guarantees the newest secure version
    B
    Is a mutable pointer that can change, making deployments non-reproducible
    C
    Cannot be used in production
    D
    Is immutable and version-pinned
  27. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    A pod requests 250m CPU and 256Mi memory with no limits set. What does this mean?

    A
    It will be OOM-killed if it exceeds 256Mi
    B
    The pod cannot exceed 250m CPU
    C
    The pod is guaranteed those resources; can burst higher if node capacity allows
    D
    It will not be scheduled
  28. FreePracticeQuiz.questionLabelKubernetes Fundamentals

    Which probe determines if a container is ready to receive traffic from a Service?

    A
    Startup probe
    B
    Liveness probe
    C
    Health probe
    D
    Readiness probe
  29. FreePracticeQuiz.questionLabelContainer Orchestration

    Which interface standardizes how kubelet talks to container runtimes?

    A
    CNI
    B
    OCI
    C
    CSI
    D
    CRI
  30. FreePracticeQuiz.questionLabelContainer Orchestration

    CNI plugins are responsible for:

    A
    Storing cluster state
    B
    Assigning IPs and configuring pod network connectivity
    C
    Providing DNS
    D
    Scheduling pods
Progreso: 0 de 30 preguntas completadas

¿Listo para el examen completo de KCNA?

Accede a todas las Más de 463 preguntas, a la simulación cronometrada y al análisis de tus puntos débiles. Planes desde 2,99 $: los créditos no caducan nunca.

Ver precios

Preguntas frecuentes

¿Son preguntas de práctica reales de KCNA?+
Sí. Estas 30 preguntas se han extraído directamente de nuestro banco de Más de 463 preguntas, redactadas y revisadas por profesionales certificados. Reproducen el estilo, la dificultad y el alcance del examen oficial de CNCF KCNA.
¿Es difícil el examen KCNA?+
El examen CNCF Kubernetes and Cloud Native Associate (KCNA) se considera un examen con nota de corte (puntuación de aprobado: 75%). La mayoría de los candidatos necesitan entre 4 y 8 semanas de preparación centrada. Usa estas preguntas gratuitas para saber en qué punto estás antes de comprometerte con un plan de estudio completo.
¿Cuántas preguntas tiene el examen real de KCNA?+
El examen oficial de KCNA tiene 60 preguntas de opción múltiple.
¿Hace falta registrarse para usar estas preguntas?+
No. Estas 30 preguntas son gratuitas y no requieren registro. Si quieres simulación cronometrada, análisis de rendimiento y acceso a todas las Más de 463 preguntas, nuestros planes de pago empiezan en 2,99 $ por examen, con créditos que no caducan nunca.

Sigue estudiando

Aprueba KCNA en el primer intento

Únete a los candidatos que usan DummyExams para practicar con exámenes cronometrados realistas, explicaciones detalladas y análisis de puntos débiles.

Comenzar el examen de práctica completo de KCNA