题干

近年来,英语中考开始采用听力口语自动化考试,即人机对话(man-machine conversation)的方式检验学生的口语和听力。特别是对于口语测试(以前的中考对口语没有要求),学生们有不同的看法。我校就“你喜不喜欢用人机对话的形式来检验你的英语口语?”进行了调查,结果如下。请你根据表格内容,用英语写一篇短文,并谈谈你的态度及理由。


态度

理由

85%的学生

喜欢

1.spoken English is important;

2. make students pay more attention to their spoken English;

3.teachers will let them speak English more in class.

15%的学生

不喜欢

1.spoken English is poor;

2. can't answer all the questions correctly;

3. computers break down suddenly.

……

……

注意:1)文章必须包括表中的全部内容,可适当增加细节;

2)你的理由至少两条;

3)文章开头已给出,你可以抄用此开头,但不计入总词数;也可以自己写开头,则计入总词数;

4)词数:80—100。

    Do You Like to Have Tests in the Man-machine Conversation?

    Several days ago, we did a survey about whether you like to take your spoken English tests in the man-machine conversation. Here are the results.

……

上一题 下一题 0.0难度 选择题 更新时间:2018-05-17 02:51:53

答案(点此获取答案解析)

one possible version:

Do You Like to Have Tests in the Man-machine Conversation?

Several days ago, we did a survey about whether you like to take your spoken English tests in the man-machine conversation. Here are the results.

85%

同类题3

【根据宁波效实中学2012学年第一学期高一信息技术期末试卷改编】将一个十进制正整数x转换成十六进制数的方法和转换成二进制类似,反复除16取余法,它的算法如下

    第一步:x被除16取余数r1,r1是所求的十六进制数的一个数(第一次就是个位数);

    第二步:r1转换成十六进制数的一个基数并转换成字符,追加到十六进制数S的左边;

    第三步:求出x被除16的商x1;

    第四步:对x1重复(1)、(2)、(3)过程,直至商为0;

    第五步:最后的S即为所求的十六进制数;

下列Visual Basic程序的功能是将一个十进制正整数x转换成十六进制数。界面如图所示,在文本框Text1中输入一个十进制数制,单击“十进制转十六进制按钮”(Command1)后,在文本框Text2中输出转换的结果。 相应的Visual Basic程序如下:

Private Sub Command1_Click()

  Dim s As String, r As Integer

  dec = val(Text1.Text)                  ’dec得到一个十进制整数,例如:255;

  base = 16                               ’base表示16

     s = ""                                ’s变量存放要转换到的十六进制整数;

     Do While dec <> 0

          r =        ①   

          If r >= 10 Then                     ’如果base>10进制,r可能>10;

             s = Chr(65 + (r - 10)) + s   ’Chr (65)="A", 16进制数A对应10;

          Else                            ’Chr(66)="B", 16进制数B对应11;
             s = Str(r) + s      ‘余数r<10时,十进制数和十六进制基数相同;
          End If                   ‘Chr (65 +( r - 10))或str(r)在s左边,实现了反次序输出;
          dec =     ②              
    Loop
   Text2.Text = s
End Sub