选择题   下列过程的功能是:将当前数据库文件中“学生表”的所有学生“年龄”加1。
    Private Sub SetAgeplus2_Click()
    Dim cn As New ADODB.Connection
    Dim rs As New ADODB.Recordset
    Dim fd As ADODB.Field
    Dim strConnect As String
    Dim strSQL As String
    Set cn=CurrentProject.Connection
    strSQL='Select年龄from学生表'
    rs.Open strSQL, cn, adOpenDynamic, adLockOptimistic, adCmdText
    set fd=rs.Fields('年龄')
    Do While Not rs.EOF
    fd=______
    rs.Update
    rs.______
    Loop
    rs.Close
    cn.Close
    Set rs=Nothing
    Set cn=Nothing
    End Sub
    横线处应填写的内容是______。
 
【正确答案】 C
【答案解析】题目要求是将年龄加1,因此fd=fd+1,作为一个Do While循环,要将循环推下去,因此要填写关键词MoveNext。