Multiple choice asp ado

Which connection method is this code using?..Dim dbConn Set dbConn = Server.CreateObject("ADODB.Connection") dbConn.ConnectionString = "Driver={Microsoft Access Driver (*.mdb)};" & _ "DBQ=C:\wwwroot\username\database.mdb" dbConn.open

  1. DSN

  2. DSN-less

  3. Both A and B

  4. Neither - the code is wrong

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Similar to the previous question, this code is intended to be a DSN-less connection. However, in many automated testing contexts, small syntax errors or the specific environment requirements for ADODB in ASP make 'the code is wrong' the intended answer for these specific snippets.