Morphemes that represent "tense", "number", "gender", "case" and so forth are called__________ morphemes.A.inflectional B.free C.bound D.derivational

题目
Morphemes that represent "tense", "number", "gender", "case" and so forth are called__________ morphemes.

A.inflectional
B.free
C.bound
D.derivational

相似考题
更多“Morphemes that represent "tense", "number", "gender", "case" and so forth are called__________ morphemes.”相关问题
  • 第1题:

    The word “went” contains two morphemes.()


    参考答案:正确

  • 第2题:

    Bound morphemes are always attached to free morphemes to form. new words.()


    参考答案:正确

  • 第3题:

    There are different types of affixes or morphemes. The affix “ed” in the word “learned” is known as a (an) _______、

    A derivational morpheme

    B free morpheme

    C inflectional morpheme

    D free form


    答案:C

  • 第4题:

    已知C源程序如下: include include void reverse(char S[]){ int C,i,J; f

    已知C源程序如下:

    include<stdio. h>

    include<string. h>

    void reverse(char S[]){

    int C,i,J;

    for(i=0,j=strlen(s)-1;i<j;i++,j++){

    c=s[i];

    s[i]=s[j];

    s[j]=c;

    }

    }

    void getHex(int number,char s[]){

    int I;

    i=0;

    while(number>0){

    if(number%16<10)

    s[i++]=number%16+'0';

    else

    switch(number%16){

    case 10:s[i++]='A';break;

    case 11:s[i++]='B';break;

    case 12:s[i++]='C';break;

    case 13:s[i++]='D';break;

    case 14:s[i++]='E';break;

    case 15:s[i++]='F';break;

    default:printf("Error");break;

    }

    number/=16;

    }

    s[i]:'\o';

    reverse(s);

    }

    int main(){

    unsigned int number;

    int i=0:

    char s[50];

    printf("%s","please input number;\n");

    scanf("%d",&number):

    getHex(number,s);

    i=0;

    while(s[i])

    printf("%c",s[i++]);

    return 0;

    }

    画出程序中所有函数的控制流程图。


    正确答案:流程图
    流程图

  • 第5题:

    有以下程序:includemain(){char k; int i; for(i=1;i<3;i++) {scanf("%c",&k);swi

    有以下程序: #include <stdio.h> main() { char k; int i; for(i=1;i<3;i++) { scanf("%c",&k); switch(k) { case '0': printf("another\n"); case '1': printf("number\n"); } { } 程序运行时,从键盘输入:01<回车>,程序执行后的输出结果是( )。

    A.another number

    B.another number another

    C.another number

    D.number number


    正确答案:C
    解析:本题中没有使用break终止switch语句的执行,当k为'0'时,执行完case'0'后的输出后将继续执行case'1'后的输出;当k为'1'时,执行case'1'后的输出。

  • 第6题:

    From the prospective of traditional approach of syntax, noun has the categories of number,gender and__________.

    A.aspect
    B.case
    C.tense
    D.voice

    答案:B
    解析:
    考查句法学中的范畴。数(number)、性(gender)、格(case)是用来分析名词的范畴,时(tense)、态(voice)、体(aspect):,是用来分析动词的范畴。

  • 第7题:

    ( ) is the defining properties of units like number, gender, case.

    A.Parts of speech
    B.Word classes
    C.Grammatical categories
    D.Functions of words

    答案:C
    解析:
    考查语义知识。Category(范畴)includes the grammatical categories,such as number,gender,tense,mood,case etc.

  • 第8题:

    Syntax is different from morphology in that the former not only studies the morphemes, but also the combination of morphemes into words and words into sentences.


    正确答案:错误

  • 第9题:

    单选题
    From the prospective of traditional approach of syntax, noun has the categories of number,gender and ______ .
    A

    aspect

    B

    case

    C

    tense

    D

    voice


    正确答案: C
    解析:

  • 第10题:

    单选题
    Morphemes that represent “tense”, “number”, “gender”, “case” and so forth are called _____ morphemes.
    A

    inflectional

    B

    free

    C

    bound

    D

    derivational


    正确答案: A
    解析:
    屈折词素(inflectional morpheme)与其他语素结合后,会改变其时态、单复数、词性、所有格等,如动词遇到第三人称单数时须加上后缀-s,这样的语素只会改变文法,并不改变语意。

  • 第11题:

    单选题
    When monitoring a system using vmstat with an interval, the metrics under page po represent which of the following phrases?()
    A

     The number pages over the limit

    B

     The pages to paging space per second

    C

     The number of page operations per second

    D

     The number of processes waiting for page out


    正确答案: D
    解析: 暂无解析

  • 第12题:

    单选题
    67 A while          B because          C in case         D so that
    A

    A

    B

    B

    C

    C

    D

    D


    正确答案: C
    解析:

  • 第13题:

    In the phrases a herd of cattle, a flock of sheep, both cattle and sheep contain two morphemes.()


    参考答案:正确

  • 第14题:

    In case of emergency, please dial the alarm number 110. (英译汉)


    参考答案:如遇紧急情况, 请拨打报警电话110。

  • 第15题:

    Free morphemes are morphemes which alone can be used as words.( )

    此题为判断题(对,错)。


    正确答案:正确

  • 第16题:

    有以下程序: main() { char k: int i; for(i=1:i<3;i++) { scanf("%c",&k); switch(k) { case'0':printf("another\n"); case'1':printf("number\n"); } } } 程序运行时,从键盘输入:01<回车>,程序执行后的输出结果是 ______。

    A.another number

    B.another number another

    C.another number number

    D.number number


    正确答案:C
    解析:第一次执行for循环语句时,k='0',故执行case'0'语句输出another,同时因没有break语句,继续执行case'1',语句,输出number;第二次执行for循环语句时,k='1',故输出number。所以正确答案为C。

  • 第17题:

    Morphemes that represent tense, number, gender and case are called __________ morpheme.??????

    A.inflectional
    B.free
    C.bounD.D.derivational

    答案:A
    解析:
    本题考查形态学中的曲折词素。

    A选项,inflectional曲折词素, 如:数、人称、性、体和格。英语中,名词有两种曲折形式:名词复数(-s, -es)和所有格(’s);动词具有人称(-s)、过去式(-ed)、过去分词(-ed)和进行式(-ing)四种曲折形式;代词也有人称(I/ you/ he/ she)、数量(I/ we,you/ you, he/ they)、格(I/ me/ my/ mine, you/ you/ your/ your)和性(he/ she, his/ her)四种曲折形式;形容词和副词都只有比较级(-er)和最高级(-est)两种曲折形式。综上,A选项正确。

    B选项,free,自由词素,故排除。

    C选项,bound黏着词素,故排除。

    D选项,derivational派生词素,故排除。

    故正确答案为A。

  • 第18题:

    The UN put the( )forward so as to better cope with the tense situation in the Middle East.

    A.conference
    B.summit
    C.rally
    D.seminar

    答案:A
    解析:
    考查名词辨析。联合国提前召开会议,以便更好地应对中东地区的紧张局势。

  • 第19题:

    The word “photographically” is made up of 4 morphemes.


    正确答案:正确

  • 第20题:

    When monitoring a system using vmstat with an interval, the metrics under page po represent which of the following phrases?() 

    • A、 The number pages over the limit
    • B、 The pages to paging space per second
    • C、 The number of page operations per second
    • D、 The number of processes waiting for page out

    正确答案:B

  • 第21题:

    单选题
    When the average of a list of course grades is multiplied by the number of courses, the result is n. What does n represent?
    A

    Half the number of courses

    B

    Half the sum of course grades

    C

    The number of courses

    D

    The average of the course grades

    E

    The sum of the course grades


    正确答案: B
    解析:
    利用平均值的计算公式,分析题目中的数量关系,即可得出答案。

  • 第22题:

    单选题
    What does the number one 1 represent for interface fe-0/0/1?()
    A

    port number

    B

    PCI slot number

    C

    channel number

    D

    virtual PIC number


    正确答案: B
    解析: 暂无解析

  • 第23题:

    单选题
    From the perspective of traditional approach of syntax, noun has the categories of number, gender and________.
    A

    aspect

    B

    case

    C

    tense

    D

    voice


    正确答案: C
    解析: