How can I solve an CKAD certification question during the exam when a sample is not provided in the k8s documentation

Hello @everyone, please how would I be able to solve a question during the CKAD certification exam when a sample of the solution is not provided in the k8s documentation? For example, in the lab of the CKAD course on Storage Class, question No 6. I was asked the question here -

Create a new PersistentVolumeClaim named local-pvc with the following configuration:

StorageClass: local-path
Access Mode: ReadWriteOnce
Requested Storage: 500Mi

However, in the k8s documentation here - [Persistent Volumes | Kubernetes]
the example given for creating a PersistentVolumeClaim, how to add Access Mode wasn’t shown. My question is, if I’m asked this kind of question during the exam and I can’t find a sample in the documentation, how do I solve this question? Thanks in advance for any help.

I actually do think the docs cover this one. You can also use kubectl explain pvc for possible fields, which is a good way to find this information fast during the exam. An example doc page that’s helpful here: Configure a Pod to Use a PersistentVolume for Storage | Kubernetes