itgle.com
参考答案和解析
参考答案:A
更多“()refers to the language that surrounds or accompanies a piece of utterance or discour ”相关问题
  • 第1题:

    Human resources workers serve a vital ( ) in screening qualified candidates for the company's
    managerial positions.

    A. play

    B. function

    C. skill

    D. piece

    答案:B
    解析:

  • 第2题:

    Phatic communication refers to( ).

    A.language’s function of the expression of identity
    B.social interaction of language
    C.language′s function of expressing it self
    D.sociological use of language

    答案:B
    解析:
    语言学基本概念。Phatic Communion(交际性谈话)指的是语言的社会交际功能。例如,我们径常说一些诸如God bless you!等礼节性的寒暄之语。

  • 第3题:

    【单选题】若有以下说明和语句: char*language[]={“fortran” ,”basic”,”pascal”,”java”,”c”,}; char **p; p=language+2; 则语句printf(“%on,”*p) ; ()

    A.输出的是language[2]元素的地址

    B.输出的是字符窜pascal

    C.输出的是language[2]元素的值,它是字符窜pascal的首地址

    D.格式说明不正确,无法得到确定的输出


    scanf(“%d%f”,&a,&b);

  • 第4题:

    __________

    A.receive
    B.friend
    C.field
    D.piece

    答案:B
    解析:

  • 第5题:

    Language
    Language is a system of arbitrary vocal symbols used for human communication.

  • 第6题:

    【单选题】若有以下说明和语句: char*language[]={“fortran” ,”basic” ,”pascal”,”java”,”c”,}; char **p; p=language+2; 则语句printf(“%on”,*p);()。

    A.输出的是language[2]元素的地址

    B.输出的是字符窜pascal

    C.输出的是language[2]元素的值,它是字符窜pascal的首地址

    D.格式说明不正确,无法得到确定的输出


    C 解析:选项A将97作为ASCII码值(小写字母a的ASCII码值)赋给字符变量t。选项D将字符a和字符b的ASCII码值的和赋给变量t。选项B是将字符a的 ASCII码值赋给变量t,也是正确的。选项C中的“a”是字符串常量,不是字符常量。