Question: What is the correct selector for targeting all text inputs that are not disabled?
- `input[type="text"]:not([disabled]) {...}`
 - `input[type="text"]:not("disabled") {...}`
 - `input[type*="text"]:not([disabled="disabled"]) {...}`
 - `input[type="text"]:not([type="disabled"]) {...}`
 
Answer: The correct answer of the above question is Option A:`input[type="text"]:not([disabled]) {...}`