Question: What is the risk of using multiple field tags in a single struct?
- Every field must have all tags to compile.
- It tightly couples different layers of your application.
- Any tags after the first are ignored.
- Missing tags panic at runtime.
Answer: The correct answer of the above question is Option B:It tightly couples different layers of your application.