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.mdd" dbConn.Open

  1. DSN

  2. DSN-less

  3. Neither - the code is wrong

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

The code contains a typo in the file extension '.mdd' (should be .mdb). Additionally, while it attempts a DSN-less connection string, the syntax and the typo make the code non-functional as written, justifying the 'code is wrong' selection.