Question: Using an attribute selector, how would you select an `` element with a "title" attribute?

  1. `a[title]{...}`
  2. `a > title {...}`
  3. `a.title {...}`
  4. `a=title {...}`

Answer: The correct answer of the above question is Option A:`a[title]{...}`