下列程序段的功能是实现“学生”表中“年龄”字段值加1Dim Str As StringStr=”________________”Docmd.RunSql Str空白处应填入的程序代码是A.年龄=年龄+1B.Update学生Set年龄=年龄+1C.Set年龄=年龄+1D.Edit学生Set年龄=年龄+

下列程序段的功能是实现“学生”表中“年龄”字段值加1

Dim Str As String

Str=”________________”

Docmd.RunSql Str

空白处应填入的程序代码是

A.年龄=年龄+1

B.Update学生Set年龄=年龄+1

C.Set年龄=年龄+1

D.Edit学生Set年龄=年龄+


相关考题:

( 35 )下列程序段的功能是实现 “ 学生 ” 表中 “ 年龄 ” 字段值加 1Dim Str As StringStr= " ——————"Docmd.RunSQL Str空白处应填入的程序代码是A )年龄 = 年龄 +1B ) Update 学生 Set 年龄 = 年龄 +1C ) Set 年龄 = 年龄 +1D ) Edit 学生 年龄 = 年龄 +l

下列子过程的功能是:将当前数据库文件中“学生表”的学生“年龄”都加1。请在程序空白的地方填写适当的语句,使程序实现所需的功能:Private Sub SetAgePlus1_Click()Dim db As DAO.DatabaseDim rs As DAO.RecordsetDim fd As DAO.FieldSet db = CurrentDb()set rs = db.OpenRecordset("学生表")Set fd= rs.Fields("年龄")Do While Not rs.EOFrs.Editfd =【 】rs.Update【 】Looprs.Closedb.CloseSet rs = NothingSet db = NothingEnd Sub

下列程序段的功能是实现“学生”表中“年龄”字段值加1,空白处应填入的程序代码是( )。Dim Str As String Str=" " Docmd.RunSQL StrA.年龄=年龄+1B.Update学生Set年龄=年龄+1C.Set年龄=年龄+1D.Edit学生年龄=年龄+1

下列程序段的功能是实现“学生”表中“年龄”字段值加1:Dim Str As String Str=””Docmd.RunSQL Str空白处应填入的程序代码是( )。A.年龄=年龄+1B.Update学生Set年龄=年龄+1C.Set年龄=年龄+1D.Edit学生Set年龄=年龄+1

下列程序段的功能是实现"学生"表中"年龄"字段值加1: Dim Str As String (共35题. Str="____________" Docmd.RunSQL Str 空白处应填入的程序代码是A.年龄=年龄+1B.Update 学生 Set 年龄=年龄+1C.Set 年龄=年龄+1D.Edit 学生 Set 年龄=年龄+1

下列程序段的功能是实现“学生”表中“年龄”字段值加1。 DimStrAsStringStr="_________"Docmd.RunSQLStr空白处应填入的程序代码是( )。A.年龄=年龄+1B.Update学生set年龄=年龄+1C.Set年龄=年龄+1D.Edit学生Set年龄=年龄+1

下列程序段的功能是实现学生表中年龄字段值加1:Dim Str As StringStr=____________Docmd.RunSQL Str空白处应填入的程序代码是A.年龄=年龄+1B.Update 学生 Set 年龄=年龄+1C.Set 年龄=年龄+1D.Edit 学生 Set 年龄=年龄+1 ?

下列程序段的运行结果是() String str1 = “Good”; String str2 = “morning”; String str3 = str1.toLowerCase()+str2.toUpperCase(); System.out.println(str3);A.GoodmorningB.gOODmORNINGC.goodmorningD.goodMORNING

阅读下面的程序段: String str1=new String("java"); String str2=new String("java"); StringBuffer str3=new StringBuffer("java"); 对于上述定义的变量,以下表达式的值为true的是哪个?()A.str1==str2B.str1.equals(str2)C.str1==str3D.其余都不对