Courseiva
StorageeasyMultiple ChoiceObjective-mapped

CKA kubectl get Practice Question

Which of the following commands will list all PersistentVolumeClaims in a cluster?

⚠ Common exam trap

Candidates often confuse the shorthand `pv` for PersistentVolume with `pvc` for PersistentVolumeClaim, or mistakenly believe that `kubectl get claims` is valid.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

kubectl get pvc

`kubectl get pvc` is the correct command to list PersistentVolumeClaims using the official short name. Option A lists PersistentVolumes (`pv`). Option C (`claims`) and Option D (`persistent-volume-claims` with hyphens) are invalid resource names and will result in an error.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • kubectl get pv

    Why it's wrong here

    This command lists PersistentVolumes (PV), not PersistentVolumeClaims (PVC).

  • kubectl get pvc

    Why this is correct

    Correct. `kubectl get pvc` is the standard shorthand command to list all PersistentVolumeClaims.

  • kubectl get claims

    Why it's wrong here

    This uses an invalid shorthand 'claims'. The correct shorthand is 'pvc'.

  • kubectl get persistent-volume-claims

    Why it's wrong here

    Although `kubectl get persistentvolumeclaims` works, the standard and expected command for listing PVCs is the shorthand `kubectl get pvc`.

About these practice questions

Courseiva writes every CKA question from scratch — 302 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This CKA practice question is part of Courseiva's free CNCF certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CKA exam.