Multiple choice asp ado

Which connection method is this code using?.. Dim dbConn Set dbConn = Server.CreateObject("ADODB.Connection") dbConn.Connectionstring = "DSN=Quiz; uid=login; pwd=password" dbConn.Open

  1. DSN

  2. DSN-less

  3. Neither - the code is wrong

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

The code uses the DSN connection method, evidenced by the connection string "DSN=Quiz; uid=login; pwd=password." This references a preconfigured Data Source Name called "Quiz" and passes additional parameters for username and password. The code structure is correct for DSN-based connections in ASP using ADODB.