Question: What is the risk of using multiple field tags in a single struct?

  1. Every field must have all tags to compile.
  2. It tightly couples different layers of your application.
  3. Any tags after the first are ignored.
  4. Missing tags panic at runtime.

Answer: The correct answer of the above question is Option B:It tightly couples different layers of your application.