Multiple choice asp ado

Which connection method is this code using?...Dim dbConn Set dbConn = Server.CreateObject("ADOBD.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
C Correct answer
Explanation

The code contains a significant typo: 'Server.CreateObject("ADOBD.Connection")'. The correct ProgID is 'ADODB.Connection'. Because of this misspelling, the object cannot be instantiated, and the code will fail at runtime.