MDAC is Microsoft Data Access Components, which is the name of the package that will install ado, oledb, and more. You can find out more at www.microsoft.com/data
It's easy to determine the ADO/MDAC version, just make a simple asp page containing
<%
dim con
set con = server.CreateObject("ADODB.Connection")
Response.Write con.Version
%>