Q1: You are writing a spec. Which sentence is the best fit if certificate validation is required for conformance?
Multiple Choice
**Explanation:**
**Definition (key word):**
- `MUST`: mandatory for conformance.
- `SHOULD`: strong recommendation; exceptions may exist with justification.
- `MAY`: optional; implementers can choose.
**Why B is correct:**
If a behavior is required to be compliant, write it as `MUST`. That makes it unambiguous and testable for conformance.
**Why A/C are not:**
- A (`SHOULD`): allows exceptions; readers may assume skipping is still compliant.
- C (`MAY`): makes validation optional, weakening security and conformance clarity.
**Related topic example:**
Security requirements are a common place where accidental `SHOULD`/`MAY` turns into real-world vulnerabilities.