Multiple choice technology testing Select the one which would lead to SQL injection attack SqlDataAdapter myCommand = new SqlDataAdapter( "SELECT CustomerName, Email, PhoneNo FROM users WHERE cust_id = '" + txtuser.Text + "'", myConnection); CREATE PROCEDURE procGetUser @custId VARCHAR(5) AS SELECT CustomerName, Email, PhoneNo FROM Customers WHERE cust_id = @custId SqlDataAdapter myDataAdapter = new SqlDataAdapter("SELECT CustomerName, Email, PhoneNo FROM Customers WHERE cust_id = @cust_id", connection); myCommand.SelectCommand.Parameters.Add("@cust_id", SqlDbType.VarChar, All the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation String concatenation with user input (A) allows attackers to inject malicious SQL by crafting input like ' OR 1=1--. Options B and C use parameterized queries, which separate SQL code from data, making injection impossible.