Question: According to WordPress PHP coding standards for inline comments, how would you write a single-line comment in a PHP document?

  1. `// This is a single line comment`
  2. `/\* _ This is a single line comment._/`
  3. `// This is a single line comment.`
  4. ``

Answer: The correct answer of the above question is Option A:`// This is a single line comment`