●A typical (66) language contains an applicative sublanguage which approximates the mathematical abstractions of"timeless"functions applied to "spaceless" values, where the actual operation sequences and use of storage space during expression evaluation

题目

●A typical (66) language contains an applicative sublanguage which approximates the mathematical abstractions of"timeless"functions applied to "spaceless" values, where the actual operation sequences and use of storage space during expression evaluation are organized behind the (67) .In this setting,values are data structures of low volume,typically a few computer words or less,which means that an illusion of spacelessness can be realized by having (68) results during expression evalution stored at the discretion of the language implementation, and effecting parameter (69) and (70) operations through value copying.

(66) A.imperative

B.mandatory

C.compulsory

D.voluntary

(67) A.foreground

B.background

C.screen

D.scenes

(68) A.middle

B.intermediate

C.previous

D.final

(69) A.tranverse

B.transportation

C.transmmision

D.translation

(70) A.assignment

B.design

C.value

D.dispatch


相似考题
参考答案和解析
正确答案:A,D,B,C,A
【解析】(参考译文)典型的强制性语言包含可应用的子语言,该子语言类似于数学抽象中时间无限的函数运行于空间无限的值上,而表达式求值过程中实际的操作序列与i存储空间使用都在后台组织。在这种条件下,值一般是数据量小的数据结构,通常是若干字。这也就意味着对"空间无限"的幻觉是表达式求值过程中通过使用中间结果影响参数传递及通过传值安排操作等来实现的。
更多“●A typical (66) language contains an applicative sublanguage which approximates the mathe ”相关问题
  • 第1题:

    Language,culture,and personality may be considered independently( )each other in thought,but they are inseparable in fact.
    of


    答案:
    解析:
    independently“独立地”,后接of。句意:语言、文化、性格在思维上(思想上)可以分别给予考虑,但在实际生活中却不是这样,是分不开的。

  • 第2题:

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

  • 第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题:

    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!等礼节性的寒暄之语。

  • 第5题:

    10、下面程序段执行后的输出结果是()。 char a[]="language",*p; p=a ; while (*p!='u') { printf("%c",*p-32); p++ ;}

    A.LANG

    B.LANGUAGE

    C.language

    D.langUAGE


    B

  • 第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”是字符串常量,不是字符常量。