第1题:
(15)以下不能输出“Program”的语句是( )。
A)Print Mid("VBProgram", 3, 7)
B)Print Right("VBProgram", 7)
C)Print Mid("VBProgram", 3)
D)Print Left("VBProgram", 7)
第2题:
假设某数据库表中有一个“学生编号”字段,查找编号第3、4个字符为“03”的记录的准则是( )。
A.Mid([学生编号],3,4)="03"
B.Mid([学生编号],3,2)="03"
C.Mid("学生编号"3,4)="03"
D.Mid("学生编号",3,2)="03"
第3题:
函数 MID$(“123456”2,3)的值是( )。
A.123
B.234
C.345
D.456
答案:B
分析:
Mid函数可以实现在任何位置取任何长度的子串,本题中,函数 MID$(“123456”2,3)是指从第2个字母开始取3个字符,即“234”。
第4题:
A、“ll”
B、“llo”
C、“ell”
D、“ello”
第5题:
PC机中有一种类型为.mid的文件,下面是关于此类文件的一些叙述,其中错误的是:
A..mid文件遵循MIDI规范,可以由媒体播放器之类的软件进行播放
B.播放.mid文件时,乐曲是由PC机中的声卡合成出来的
C..mid文件播放出来的可以是乐曲,也可以是歌曲
D.PC机中的乐曲除了使用.mid文件表示之外,也可以使用.wav文件表示
第6题:
下列程序段的执行结果为 ______。 A="abcd" B="bcde" E=Right(A,3)" F=Mid(B,2,3) If E<F Then Print E+F Else Print F+E
A.cdebcd
B.cdd
C.cdcd
D.bcdcde
第7题:
用于获得字符串Str从第2个字符开始的3个字符的函数是_________。
A.Mid(Str,2,3)
B.Middle(Str,2,3)
C.Right(Str,2,3)
D.Left(Str,2,3)
第8题:
22. Last year they became good friends again __________ after they didn’t talk with each
other for a long time.
A. on Mid-Autumn Day
B. the day before Mid-Autumn Day
C. the day after Mid-Autumn Day
D. two days before Mid-Autumn Day
第9题:
A、Mid-Autumn day falls on the 15th day of the 8th lunar month.
B、People will eat moon cakes and enjoy the beautiful full moon.
C、Mid-Autumn Day was a harvest festival.
第10题:
A、Mid(A,10,14)
B、Right(A,4)
C、Mid(A,10,4)
D、Left(A,10,4)