Direction: Choose the correct option
Q1.
What is SQL injection?
Direction: Choose the correct option
Q2.
Which query is vulnerable to SQL injection?
Direction: Choose the correct option
Q3.
How do prepared statements prevent injection?
Direction: Choose the correct option
Q4.
PREPARE stmt FROM 'SELECT * FROM users WHERE username = ?'; SET @user = 'admin'; EXECUTE stmt USING @user;What does '?' represent?Direction: Choose the correct option
Q5.
What other practices prevent SQL injection?
