Multiple choice technology testing Select the security best practice techniques (select more than one) Provide highest privilege Encode all client supplied data Use of parameterized stored procedure Providing detailed error message Reveal answer Fill a bubble to check yourself B,C,D Correct answer Explanation Encoding client data prevents XSS. Parameterized stored procedures help prevent SQL injection. Detailed error messages aid debugging but can leak sensitive information. Providing highest privilege (A) violates the principle of least privilege.