1. Which of the following code examples turns off a filter?
  2. A. rsStudents.Filter = ""
    B. rsStudents.Filter = Nothing
    C. rsStudents.Filter = adFilterNone
    D. rsStudents.Filter = adDisableFilter
     

  3. Which of the following is not a component of the ADO object model?
  4. A. TableDef
    B. Recordset
    C. Connection
    D. Command
     

  5. Which cursor location must be used when implementing a disconnected recordset?
  6. A. Server-side
    B. Client-side
    C. Dynamic
    D. Static
     

  7. Which Recordset method is used to save changes to a data source?
  8. A. AddNew
    B. Save
    C. Update
    D. Edit
     

  9. Which method is used to add a new field to a dynamic recordset?
  10. A. Update
    B. Insert
    C. AddNew
    D. Append
     

  11. Which two lines of code bind a text box to a Recordset object?
  12. A. Set txtStudentCity.DataSource = rsStudent
    txtStudentCity.DataField = "City"
    B. Set txtStudentCity.DataSource = rsStudent
    txtStudentCity.Text = "City"
    C. Set txtStudentCity.Text = rsStudent
    txtStudentCity.DataField = "City"
    D. Set txtStudentCity.DataField = rsStudent
    txtStudentCity.DataSource = "City"