更多“The _______ typist had to retype the letter three times. ”相关问题
  • 第1题:

    以下对枚举类型名的定义中正确的是______。

    A.enum a={one,two,three};

    B.enum a{one=9,two=-1,three};

    C.enum a={"one","two","three"};

    D.enum a{"one","two","three"};


    正确答案:B
    解析:声明枚举类型用enum开头。例如:enum weekday(sun,mon,tue,wed,thu,fri,sat); 说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

  • 第2题:

    关于下面函数,哪一个是错误描述?defcount_letter_number(string):letter_count=0digit_count=0forchinstring:

    if'a'<=ch<='z'or'A'<=ch<='Z':letter_count+=1elif'0'<=ch<='9':digit_count+=1

    returnletter_count,digit_count

    A.函数能统计字符串中英文字母出现的次数

    B.letter_count+=1可以写做letter_count=letter_count+1

    C.letter_count+=1可以写做letter_count++

    D.函数能统计字符串中数字出现的次数


    正确答案:C

  • 第3题:

    将Windows C:盘(hda1)安装在Linux文件系统的/winsys目录下,命令是()

    A.mount dev/had1 /winsys

    B.mount /dev/had1 /winsys

    C.mount /dev/had1 winsys

    D.mount dev/had1 winsys


    B

  • 第4题:

    Despite the wonderful acting and well-developed plot the _________ movie could not hold our attention.

    A) three-hours B) three-hour

    C) three-hours’ D) three-hour’s

     

     


    选B

     用破折号连接的作形容词不用复数.

  • 第5题:

    将WindowsC:盘(hda1)安装在Linux文件系统的/winsys目录下,命令是()。

    A.mountdev/had1/winsys

    B.mount/dev/had1/winsys

    C.mount/dev/had1winsys

    D.mountdev/had1winsys


    参考答案:B

  • 第6题:

    将Windows C:盘(hda1)安装在Linux文件系统的/winsys目录下,命令是()

    A.mount dev/had1 /winsys

    B.mount /dev/had1 /winsys

    C.mount /dev/had1 winsys

    D.mount dev/had1 winsys


    C