Q. Which method helps prevent SQL Injection in Python applications?
β
Correct Answer: (B)
Using parameterized queries or prepared statements
Explanation: Parameterized queries separate code and data, preventing injection attacks.