【单选题】【消耗次数:1】
The computer could calculate much faster and better than man [] however, it could not drink.
comma
semicolon
参考答案:
复制
纠错
相关题目
【单选题】 10. I am not a violent man ____, but these insults were more than I could bear.
①  by birth
②  with birth
③  by nature
④  with nature
【单选题】 He irritates me so much that I could ( ).
①  screaming
②  screamingly
③  screamer
④  scream
【单选题】 — Who on earth could it be?— It was ____ other than Peter.
①  none
②  nothing
③  not
④  nobody
【单选题】 In the month, the man earned as much as, if______ than $50,000.
①  no more
②  no much
③  not more
④  not much
【单选题】 The TV sets made in China are much better than ______ in Japan.
①  that
②  those
③  them
④  it
【判断题】 A line is never begun with a comma, a period or a semicolon.
①  正确
②  错误
【判断题】 Before the conjunctive adverbs there should be a semicolon, not a comma.
①  正确
②  错误
【单选题】 He called the police for help, ____ that the problem was more than he could deal with.
①  to realize
②  having been realized
③  realizing
④  realized
【单选题】 He _______ to study harder in the future so that he could have more opportunities to find a better job.
①  resolved
②  resorted
③  requested
④  reserved
【判断题】 The teachers tried to __convince____ these students that they could solve the complicated problem, however, they just didn’t see the point.
①  正确
②  错误
随机题目
【单选题】 当0<x<10时,将x赋值给y,应使用哪一条语句?
①  If 0<x<10 then y=x
②  If 0<x or x<10 then y=x
③  If 0<x and x<10 then y=x
④  If 0<x Xor x<10 then y=x
【单选题】 假定在图片框Picture1中装入了一个图形,为了清除该图形(不删除图片框),应采用的正确方法是。
①  执行语句Picture1.Picture =
②  执行语句Picture1.Picture = LoadPicture ()
③  选择图片框,然后按Del键
④  选择图片框,在属性窗口中选择Picture属性条,然后按回车键
【单选题】 若要向列表框新增列表项,则可使用的方法是?
①  Add
②  Remove
③  Clear
④  AddItem
【单选题】 用下面的语句所定义的数组的元素个数是:Dim arr(3 To 5,-2 to 2)
①  24
②  12
③  15
④  20
【单选题】 可以强行中断VB程序运行的操作是?
①  按Ctrl+C键
②  按Ctrl+Z键
③  按Ctrl+V键
④  按Ctrl+Break键
【单选题】 VB一共有设计、运行和中断三种模式,要使用调试工具应该
①  进入中断模式
②  进入运行模式
③  进入设计模式
④  不用进入任何模式
【单选题】 在窗体上画一个命令按钮和一个文本框,其名称分别为Command1和Text1,把文本框的Text属性设置为空白,然后编写如下事件过程: Private Sub Command1_Click() ??? a = InputBox(Enter an integer) ??? b = InputBox(Enter an integer) ??? Text1.Text = b + a End Sub 程序运行后,单击命令按钮,如果在输入对话框中分别输入8和10,则文本框中显示的内容是______。
①  出错
②  18
③  810
④  108
【单选题】 列表框中的列表项的数目可以通过以下哪个属性的值获得?
①  ListIndex
②  ListCount
③  Count
④  Index
【单选题】 为了使一个窗体从屏幕消失但仍在内存中,所使用的方法或语句为?
①  Unload
②  Load
③  Show
④  Hide
【单选题】 Sub过程与Function过程最根本的区别是
①  两种过程参数的传递方式不同
②  Function过程可以有参数,Sub过程不可以
③  Sub过程可以使用Call语句或直接使用过程名调用,而Function过程不可以
④  Sub过程的过程名不能返回值,而Function过程能通过过程名返回值