【单选题】【消耗次数:1】
Anyone who[填空] questions to ask, please come to my office this afternoon.
has
had
have
having
参考答案:
复制
纠错
相关题目
【单选题】 ______ has questions is welcome to ask.
①  Who
②  Anyone
③  Those
④  Anyone who
【单选题】 If Mary _______shopping this afternoon, please ask her to write a shopping list first.
①  will go
②  goes
③  went
④  has gone
【单选题】 Those who have applied for the post()in the office.
①  are being interviewed
②  are interviewing
③  interviewing
④  to be interviewing
【单选题】 The lady _____________ you met in my office is going to give us a report this afternoon.
①  whom
②  what
【单选题】 Must I stay at the office this afternoon? ---No, you [填空].
①  don’t
②  needn’t
③  don’t need
④  can’t
【单选题】 A: Why didnt you come to my party last night? B: Im sorry, [填空]. I had to visit my grandmother at the hospital.
①  I did it
②  I still remember it
③  I will come
④  I couldnt make it
【单选题】 He _______ in the office the whole afternoon.
①  has been working
②  is working
③  has worked
【单选题】 My aunt has three [填空].
①  child
②  childs
③  children
④  childrens
【单选题】 Have they had the broken windowpanes [填空] yet?
①  repalcing
②  to repalce
③  replaced
④  repalce
【多选题】 She _____________ answering my questions.
①  took off
②  kept away from
③  fought for
④  avoided
随机题目
【单选题】 下列哪个语句可以为动态数组分配实际元素个数?
①  static语句
②  Dim语句
③  public语句
④  ReDim语句
【单选题】 以下不属于Visual Basic 6.0系统的文件类型是?
①  .Frm
②  .Bas
③  .Cpp
④  .Vbp
【单选题】 在窗体上画一个名称为CommonDialog1的通用对话框,一个名称为Command1的命令按钮。然后编写如下事件过程: Private Sub Command1_Click() ??? CommonDialog1.FileName = ??? CommonDialog1.Filter=All file|*.*|(*.Doc)|*.Doc|(*.Txt)|*.Txt ??? CommonDialog1.FilterIndex=2 ??? CommonDialog1.DialogTitle=VBTest ??? CommonDialog1.Action=1 End Sub 对于这个程序,以下叙述中错误的是______。
①  在该对话框中指定的默认文件类型为文本文件(*.Txt)
②  在该对话框中指定的默认文件名为空
③  该对话框的标题为VBTest
④  该对话框被设置为打开对话框
【单选题】 命令钮的标题文字由什么属性来设置
①  Text
②  Caption
③  Name
④  (名称)
【单选题】 表达式Len(abc程序设计123)的值是?
①  10
②  14
③  20
④  17
【单选题】 骰子是一个正六面体,分别用1~6 代表其六个面,掷一次骰子出现的数可表示为?
①  Int(Rnd*6+1)
②  Int(Rnd*6)
③  Int(Rnd*7)
④  Int(Rnd(6)+1)
【单选题】 设执行以下程序段时依次输入1、3、5,执行结果为______。 ??? Dim a(4) As Integer, b(4) As Integer ??? For K = 0 To 2 ??????? a(K + 1) = Val(InputBox(请输入数据)) ??????? b(3 - K) = a(K + 1) ??? Next K ??? Print b(K)
①  0
②  3
③  5
④  1
【单选题】 在窗体上画1个命令按扭(名称为Command1)和1个文本框(名称为Text1),然后编写如下事件过程: ???? Private Sub Command1_Click() ???? ? x=Val(Text1.Text) ???? ? Select Case x ???????? Case 1,3 ????????????? y=x*x ???????? Case Is>=10,Is<=-10 ????????????? y=x ???????? Case -10 To 10 ????????????? y=-x ?End Select ?????? End Sub 程序运行后,在文本框中输入3,然后单击命令按扭,则以下叙述中正确的是______。
①  先执行y=x*x,再执行y=-x
②  执行y=-x
③  执行y=x*x
④  程序出错
【单选题】 与十六进制数2A等值的二进制数是?
①  00101010
②  01001010
③  00111010
④  10100010
【单选题】 语句Dim a(3 ,-2 to 2,5)声明的数组a包含的元素个数有多少个?
①  120
②  75
③  60
④  13