当前位置:文档之家› C++面向对象程序设计语言期末考试试卷

C++面向对象程序设计语言期末考试试卷

C++面向对象程序设计语言期末考试试卷
C++面向对象程序设计语言期末考试试卷

C++面向对象程序设计语言期末考试试卷

一.选择题(每题1分,共10分)

1.在C++中,常量?C?和”C”两者________。

A)完全不同B)存储长度相同C)类型相同D)存储值相同

2.有二维字符数组char s[4][6]={“zhang”,”gao”,”tang”,”wang”},执行程序cout<<*s[2],

屏幕上显示________。

A)gao B)tang C)g D)t

3.若w=1,x=2,y=3,z=4,则条件表达式w>x?w:z>y?z:x的结果为_______。

A)4 B)3 C)2 D)1

4.设a和b为整型变量,执行语句b=(a=2+3,a*4),a+5;后a和b的值为_______。

A)5,10 B)20,25 C)5,25 D)5,20

5.如果整型变量a,b,c的值分别为5,4,3,则语句if(a>=b>=c) c++;执行后c的值是

______。

A)5 B)4 C)3 D)2

int i=10;执行下列语句后,i的值是_______。

{

case 9: i+=1;

case 10: i+=1;

case 11: i+=1;

case 12: i+=1;

}

A)10 B)11 C)12 D)13

6.执行以下程序:

#include

void main(void)

{char c=0; cout<

输出的结果是________。

A) …\0?B)语法错C)0 D) 一个空行

7.设有类型说明:enum color{red,yellow=3,white,black};

则执行语句cout<

A) 4 B) 3 C) 2 D) 1

8.对于下面的几个函数:

void f(int x){……}//1

int f(int y){……}//2

int f(int i,int j){……}//3

float k(int x) {……}//4

_______是重载函数。

A)4个全部B)1和4 C)2和3 D)3和4

9.在一个函数中,要求通过函数来实现一种不太复杂的功能,并且要求加快执行速度,

选用________合适。

A)内嵌函数B)重载函数C)递归调用D)嵌套调用

二.填空题(每空2分,共10分)

1.浮点型变量f 当前存储的值是17.8,经(int) f 类型强制转换后f 存储的值是______。

2.若:typedef char * STRING;

STRING p,s[10];

则:p和s的数据类型分别是______________、_________________。3.求a,b,c中的最大值,请将表达式补充完整( t=a>=b?a:b)

c h=?a?+?9?-…3?的值为_______。

三.阅读程序题(每空2分,共14分)

1.下列程序的输出结果是____(1)_____。

#define MUL(x,y) x*y

#include

void main(void)

{

int x=4,y=6;

cout<

}

2.下面函数的功能是________(2) ________。

sss(char* s,char* t)

{

while((*s)&&(*t)&&(*t++==*s++));

return;

}

3.对于下述程序段:

int c(int x,int y)

{

if(x<1) return(y+2);

else if(x%2==1) return(y*c(x-1,y+1));

else return(c(x/2,y)*3);

}

当主程序中有打印语句cout<

#include

int c=-1;

void f(int* a,int b)

{ static int c=2;

(*a)++;

c--;

cout<<*a<<'\t'<

}

void main(void)

{

int i;

for(i=0;i<=1;i++)

f(&i,c);

cout<<"c="<

}

程序执行后输出的第二行是_____(4)_____;

输出的最后一行是____(5)_____。

5.[程序]

下面程序的输出结果是_____(6)_____。

#include

int funa(int a,int b)

{

return(a + b);

}

int funb(int a,int b)

{

return(a - b);

}

int sub(int(*f)(int ,int),int x,int y)

{

return ((*f)(x,y));

}

void main(void)

{

int x,(*p)(int,int);

p=funb;

x=sub(funa,8,3);

x+=sub(p,9,3);

cout<<"x="<

}

6.[程序]

下面程序的输出结果是_____(7)_____。

#include

int aa[3][3]={{2},{4},{6}};

void main(void)

{

int i,*p=&aa[0][0];

for(i=0;i<2;i++){

if(i= =0)

aa[i][i+1]=*p+1;

else

++p;

}

cout<<*p<

}

四.完善程序题(每空2分,共26分)

1.下面函数的功能是从数组arr(有n个元素)中找出最小元素,并返回其引用。

____(1)____findmin(int arr[],int n)

{

int pos=0;

for(int i=1;i<=n-1;++i)

if(_______(2)_______) pos=i;

return _____(3)_____;

}

2.下面函数的功能是求N个数之和的递归函数(即1+2+3+…..+n)

int sum(int n)

{

if(___(1)___) return 1;

else return ______(2)_____;

}

3.本程序中的函数find是判断数组a中的整数是升序、降序还是无序的,如果是升序返回1,降序返回2,无序返回3。函数find中的形参n为数组a中有效整数的数量,a中从a[0]到a[n-1]包含待判断的整数。

int find(int a[],int n)

{

int s,i;

if(a[0]

s=1;

else s=2;

if(s= =1){

i=1;

while (i

if(______(1)_____){

s=3;

break;}

______(2)_____;

}

}

if(s==2)

for(i=1;_____(3)____;i++)

if(a[i]

_______(4)_____;

break;

}

return s;

}

4.将一条链表上相邻的两个结点合并为一个结点,即将第一个结点与第二个结点合并,将第三个结点与第四个结点合并,…..。如链表上结点个数为奇数,则最后一个结点不合并,直接作为合并后链表上的最后一个结点。链表结点的数据结构为:

struct node{

int data;

struct node * next;

};

以下merge( )函数的输入参数h指向要合并的链表的链首。

void merge(node *h)

{

node *p1,*p2;

if(__________(1)_________)

return h;

p1=h;

p2=h->next;

while(p2){

p1->data +=p2->data;

p1->next=p2->next;

delete p2;

p1=_______(2)______;

if(_______(3)_______)

p2=______(4)_______;

else

p2=null;

}

return;

}

C++面向对象程序设计语言期末考试

参考答案:

一.选择题

1. A

2.D

3. A

4.D

5.C

6. D

7.D

8.A

9.C 10. A 二.填空题

1. 17.8

2. 字符型指针(指向字符型变量的指针),字符型指针数组3.c : t // c: (t=a>=b?a:b)

4. g // ?g?, 103, (147)

三.阅读程序题

1.7

2.比较字符串的大小

3.324

4. c = -1,

5. c = -1 //容易遗忘“c=”

6.17

7. 3

四.完善程序题

1. (1) int & (2) arr[i]

2. (1) n= =1 (2) n+sum(n-1)

3. (1) a[i] >a[i+1] //a[i+1]

(2) i++; //无其他算法

(3) i

4. (1) h= =0 //h= =0||h->next = = 0, !h

(2) p1->next

(3) p1!=0 //p1!=null, p1

(4) p1->next

语言学概论期末考试试卷2

语言学概论期末考试试卷2 一、填空题(每空1分,共15分) 1、人与人的口头交际过程是非常复杂的,从通信理论的角度可以将之理解为和的过程。 2、符号包含的两个方面是、。 3、到目前为止,语言学家的研究主要有三种不同的角度,分别是着眼于语言的、、。 4、共时语法指的是从某一时期存在的语法现象的角度地、 地研究语法,研究的重点是某一语言在特定范围的语法表现形式和语法规则系统。 5、义素分析的要求一是,二是。 6、文字改革有三种不同的情况:一种是;一种是;还有一种是。 二、单项选择题(每小题1分,共10分) 1、下列国家中不是以单一民族,单一语言为基础建立起来的是() A.瑞士B.法国C.西班牙D.英格兰 2、语言是一种() A.形式和内容相统一的视觉符号系统B.音义结合的听觉符号系统C.用于交际的触觉符号系统D.集视觉、听觉、触觉为一体的符号系统 3、普通语言学从理论上讲是研究() A.个别民族语言的特殊规律B.人类各种语言一般与个别的规律 C.几种民族语言的一般与个别的规律D.汉语普通话的发展规律 4、噪音是() A.振幅固定而有规则的声波B.频率最低、振幅最大的音 C.具有周期性重复的复合波形的音D.不具备整数倍的不规则的音 5、把语法分成词法、句法两个部分,是()提出来的。 A.结构语法学B.形式语法学C.现代语法学D.传统语法学 6、语义的基本特征是() A.概括性B.民族性C.模糊性D.同语言形式的结合 7、词的()是词义的基本的和核心的部分 A.通俗意义B.非通俗意义C.理性意义D.非理性意义 8、“我吃光了盘子里的菜”这句话中,“光”的语义指向是() A.我B.吃C.盘子里的菜D.盘子 9、日文的假名是典型的() A.辅音文字B.音节文字C.表意文字D.意音文字 10、四川人在公开场合讲普通话,在家里讲四川话,这是一种()

c语言期末考试试题

一、单项选择题。(每题1分,共20分) 1. C程序的基本单位是:() A.子程序 B.程序 C.子过程 D.函数 2.在C语言中,非法的八进制是:() A.016 B.018 C.017 D.02 3. 不是C语言实型常量的是:() A.55.0 B.0.0 C.55.5 D.55e2.5 4 .字符串“xyzw”在内存中占用的字节数是:() A.6 B.5 C.4 D.3 5. 若已定义f,g为double类型,则表达式:f=1,g=f+5/4的值是:() A.2.0 B.2.25 C.2.1 D.1.5 D.1.5 D.1.5 D.1.5 6. 若有语句char c1=`d`,c2=`g`;printf(“%c,%d\n”,c2- `a`,c2-c1);则输出结果为:() (a的ASCII码值为97) A.M,2 B.G,3 C.G,2 D.D,g 7. 使用语句scanf(“a=%f,b=%d”,&a,&b);输入数据时,正确的数据 输入是:() A.a=2.2,b=3 B.a=2.2 b=3 C.2.2 3 D.2.2,3 8.表示关系12<=x<=y的C语言表达式为:() A.(12<=x)&(x<=y) B. (12<=x)&&(x<=y) C. (12<=x)|(x<=y) D.(12<=x)||(x<=y) 9.设x=1,y=2,m=4,n=3,则表达式x>y?x:mc4)后,s,t的值为:() A.1,2 B.1,1 C.0,1 D.1,0 12. 语句for(a=0,b=0;b!=100&&a<5;a++)scanf(“%d”,&b); scanf最多可执行次数为:() A.4 B.6 C.5 D.1 13. 对于for(s=2;;s++)可以理解为:()

语言学概论期末考试范围

语言学概论期末复习 1. diachronic linguistics Linguistics that studies language over a period of time, also known as historical linguistics, study of the Chinese language since the end of the Qing dynasty up to the present. 2. arbitrariness Language is arbitrary for the forms of linguistic signs bear no natural resemblance to their meaning. The link between the linguistic signs and their meanings is a matter of convention, and conventions differ radically across languages. 3. langue According to Saussure, langue refers to the abstract linguistic systems shared by all the members of a speech community. It can be thought of as the generalized rules of the language that members of a speech community seem to abide by. 4. competence Chomsky defines competence as the abstract ideal user's knowledge of the rules of his language. According to him, anyone who knows a language has internalized a set of rules about the sequences permitted in his language. This internalized set of rules is termed as a person's competence. 5. morpheme The most basic element of meaning is traditionally called morpheme. The “morpheme' is the smallest unit in terms of relationship between expression and content, a unit which can not be divided without destroying or drastically altering the meaning. 6. Morphology Morphology studies morphemes and their different forms and the way they combine in word formation. So it refers to the study of the internal structure of words and the rules by which words are formed 7. Semantic triangle According to Ogden and Richard's semantic triangle, there is no direct link between language and the world, or between the symbol ( the linguistic elements, the word, the sentence) and referent ( the object in the world of experience). The link is via thought or reference, the concepts of our minds. 8. Lingua franca Lingua franca is the general term for a language that serves as a means of communication between different groups of speakers. 9. componential analysis Componential analysis is a way to analyze lexical meaning, and it defines the meaning of a lexical element in terms of semantic components. 10. Cooperative Principle Cooperative Principle (CP) was proposed by Paul Grice, under which there are four maxims: the maxim of quantity, the maxim of quality, the maxim of relation and the

语言学期末考试

1. The study of language development over a period of time is generally termed as _____linguistics. D A. applied B. diachronic C. comparative D. synchronic 2. The sentence that has a NP and a VP can be shown in a __C__ formula "S→NP VP". A. hierarchical B. linear C. tree diagram D. vertical 3. Which of the following sounds is a voiceless bilabial stop? A A. [p] B.[m] C.[b] D.[t] 4. The words ―make‖ and ―bus‖ are called _____D____because they can occur unattached. A. derivational morphemes B .inflectional morphemes C. bound morphemes D. free morphemes 5. The pair of words ―lend‖ and ―borrow‖ are____B______. A. gradable antonymy B. relational (converse) antonymy C. synonyms D. co-hyponyms 6. The semantic components of the word ―man‖ can be expressed as ____C___. A.+animate,+human,+male,-adult; B.+animate,+human,-male,-adult; C.+animate,+human,+male,+adult D.—animate,+human,-male,-adult 7. What kind of function does the sentence ―How do you do?‖ have? B A. Directive B. Phatic C. Informative D. Evocative 8. Nouns, verbs and adjectives can be classified as_______A____. A. lexical words B. grammatical words C. function words D. form words 9. Which of the following best states the behaviorist view of child language acquisition?______A_. A. Language acquisition is a process of habit formation B. Language acquisition is the species-specific property of human beings C. Children are born with an innate ability to acquire language D. Humans are equipped with the neural prerequisites for language and language use 10. The branch of linguistics that studies meaning of language in context is called __C? A. morphology B. sociolinguistics C. pragmatics D. psycholinguistics 11、Chomsky defines "competence" as the ideal user's knowledge of the rules of his language.

2016-英语语言学期末试题练习-+答案

英语语言学练习题 Ⅰ. Matching Match each of the following terms in Column A with one of the appropriate definitions in Column B. Column A 1.displacement https://www.doczj.com/doc/6614969771.html,ngue 3.suprasegmental feature 4.deep structure 5.predication analysis 6.idiolect 7.pidgin 8.mistakes 9.interlanguage 10.motivation 11.arbitrariness https://www.doczj.com/doc/6614969771.html,petence 13.broad transcription 14.morphology 15.category 16.errors https://www.doczj.com/doc/6614969771.html,ponential analysis 18.context 19.blending 20.culture 21.learning strategies 22.selectional restrictions 23.phrase structure rules 24.culture diffusion Column B A.Learners’ independent system of the second language, which is of neither the native language nor the second language, but a continuum or approximation from his native language to the target language. 9 B.Learner’s attitudes and affective state or learning drive, having a strong impact on his efforts n learning a second language. 21 C.The rules that specify the constituents of syntactic categories. 23 D.Through communication, some elements of culture A enter culture B and become part of culture B. 24 E. A personal dialect of an individual speaker that combines elements regarding regional, social, gender, and age variations. 6 F. A special language variety that mixes or blends languages and it is used by people who speak different languages for restricted purposes such as trading. 7 G.The kind of analysis which involves the breaking down of predications into their constituents- ---- arguments and predicates. 5 H.They refer to constraints on what lexical items can go with what others. 22 I.The structure formed by the XP rule in accordance with the head’s subcategorization properties. 4 J.The phonemic features that occur above the level of the segments. 3 K.The study of the internal structure of words, and the rules that govern the rule of word formation. 14 L.The abstract linguistic system shared by all the members of a speech community. 2 https://www.doczj.com/doc/6614969771.html,nguage can be used to refer to contexts removed from the immediate situations of the speaker. It is one of the distinctive features of human language. 1 N.Learner’s conscious, goal-oriented and problem-solving based efforts to achieve learning efficiency. 10 O.The total way of life of a people, including the patterns of belief, customs, objects, institutions, techniques, and language that characterizes the life of the human community. 20 P.The common knowledge shared by both the speaker and hearer. 18

C语言程序设计期末考试试题(含答案)

C语言程序设计 期末考试试题及其答案 一、单项选择题(本大题共20题,每题2 分,共40分) 1、以下不是C语言的特点的是( ) A、C语言简洁、紧凑 B、能够编制出功能复杂的程序 C、C语言可以直接对硬件进行操作 D、C语言移植性好 2、以下不正确的C语言标识符是( ) A、ABC B、abc C、a_bc D、ab.c 3、一个C语言程序是由( ) A、一个主程序和若干子程序组成 B、函数组成 C、若干过程组成 D、若干子程序组成 4、一个算法应该具有“确定性”等5个特性,对另外4个特性的描述中错误的是( ) A、有零个或多个输入 B、有零个或多个输出 C、有穷性 D、可行性 5、设变量a是整型,f是实型,i是双精度型,则表达式10+‘a’+i*f值的数据类型为( ) A、int B、float C、double D、不确定 6、在C语言中,char型数据在内存中的存储形式是( ) A、补码 B、反码 C、源码 D、ASCII码 7、有如下程序,输入数据:12345M678<cR>后(表示回车),x的值是( ) 。 #include main(){ int x; float y; scanf("%3d%f",&x,&y); } A、12345 B、123 C、45 D、345 8、若有以下定义int a,b; float x,则正确的赋值语句是( ) A、a=1,b=2 B、b++; C、a=b=5 D、b=int(x); 9、以下程序的执行结果是( )

#include { int i=10,j=10; printf("%d,%d\n",++i,j--); } A、11,10 B、9,10 C、11,9 D、10,9 10、巳知字母A的ASCII码是65,以下程序的执行结果是( ) #include main() { char c1='A',c2='Y'; printf("%d,%d\n",c1,c2); A、A,Y B、65,65 C、65,90 D、65,89 11、下列运算符中优先级最高的是( ) A、< B、十 C、% D、!= 12、设x、y和z是int型变量,且x=3,y=4,z=5,则下面表达式中值为0是( ) 。 A、’x’&&’y’ B、x<=y C、x||y+z&&y-z D、!((x<y)&&!z ||1) 13、判断char型变量cl是否为小写字母的正确表达式为( ) A、’a’<=c1<=f’z’ B、(c1>=a)&&(c1<=z) C、(‘a’>=c1) (‘z’<=c1) D、(c1>=’a’)&&(c1<=’z’) 14、字符串"a"在内存中占据的字节个数为( ) A、0 B、 1 C、 2 D、 3 15、下面有关for循环的正确描述是( ) A、for循环只能用于循环次数已经确定的情况 B、for循环是先执行循环体语句,后判定表达式 C、在for循环中,不能用break语句跳出循环体 D、for循环体语句中,可以包含多条语句,但要用花括号括起来 16、下面程序的运行结果是( ) #include main() {int num=0; while(num<=2) {num++; printf(“%d ,num); } } A、 1 B、 1 2 C、 1 2 3

《语言学概论》期末试卷-语言学概论期末考试

《语言学概论》期末试卷 1.( 单选题 ) 下列关于“语言”的说法 ,不正确的一项是 (D )(本题 2.0 分) A、语言系统是由多个子系统组合而成的 B、语言是一个符号系统 C、语言符号具有任意性和线条性特征 D、 语言符号的音义关系可以任意改变 2.( 单选题 ) 下列元音音素都是后元音的一组是 ( B)(本题 2.0 分) A、[u, ε] B、[α, Λ] C、[α,y] D、[o, a] 3.( 单选题 ) 下列辅音音素都是塞音的一组是 ( B)(本题 2.0 分) A、[k, 1] B、[p, k] C、[p, n] D、[t, v] 4.( 单选题 ) 从语音的社会功能角度划分出来的最小语音单位是

( A)(本题 2.0 分) A、音位 B、音素 C、音节 D、音渡 5.( 单选题 ) 汉语普通话中的“我”和助词“的”单念时发音分别为[uo]和[te],而在实际语流中 ,“我的”发音是 [uo de],这是语流音变中的( A)(本题 2.0 分) A、顺同化现象 B、逆同化现象 C、弱化现象 D、异化现象 6.( 单选题 ) 语音的本质属性是 (C )(本题 2.0 分) A、物理属性 B、生理属性 C、社会属性 D、心理属性 7. ( 单选题) 英语“ students”中的“ -s”是 ( C)(本题 2.0 分)

A、虚词语素 B、词根语素 C、构形语素 D、构词语素 8. ( 单选题) 从词的构造方式看, 下列各项中属于复合词的是( D)(本题 2.0 分) A、木头 B、念头 C、苦头 D、山头 9.( 单选题 ) 划分词类的最本质的标准是 (A )(本题 2.0 分) A、分布标准 B、意义标准 C、形态标准 D、逻辑标准 10.( 单选题 ) 下面词组中 ,结构类型与其他各组不同的一组是( D)(本题 2.0 分) A、年轻漂亮/朴素大方 B、我们大家/首都北京

语言学概论期末考试题

语言学概论 一、单项选择题(每小题2分,共20分} 1.下列说法只有是正确的。 A.语言是人类最重要的辅助性交际工具。 B.语言就是说话,说话就是语言。 C.语言是一种特殊的社会现象。 D.语言具有地方色彩,说明语言不具有社会性。 2.下列说法只有是错误的。 A.汉语的声调是由音高变化形成的。 B.语言中的轻重音是由音重变化形成的。 C.音位具有区别词形的作用。 I).音素具有区别词形的作用。 3.下列说法只有是正确的。 A.“老”可以同“新、旧、少、嫩”等构成反义词。 B.“大”和“小”是绝对对立的反义词。 C.“红”与“黑”这对反义词具有非此即彼的关系。 D.反义词“冷”和“热”具有相对性。 4.下列说法只有____正确。 A.意译词如“激光”、“电话”都是借词。 B.仿译词如“机关枪”、“铁路”都是借词。 C.“尼姑”、“和尚”、“玻璃”是借词。 D.“爱神”、“北极熊”、“超人”都是借词。 5.下列词义的变化,属于词义的缩小。 A.“meat”原指菜肴,现在指荤菜。 B.“走”本义是跑,现在指步行。 C.“江”原指长江,今泛指江河。 D.“book”原指一种树木,今指成本的著作。 1.C 2.D 3.D 4.C 5.A 3.下列说法只有( )是正确的。 A.语言是人类最重要的交际工具,文字也是人类最重要的交际工具 B.不同的阶级使用语言具有不同的特点,说明语言具有阶级性 C.人类多种多样的语言说明语言具有任意性特点 D.语言是一种纯自然的现象 4.下列说法只有( )是正确的。 A.语法的组合规则是潜在的 B.语法的聚合规则是潜在的 C.语法的组合规则存在于书面语言中 I).语法的聚合规则存在”ji【j头沿吉中 5.单纯阋就是由一个( )构成的词。 A.词根 B.词干 【!.词缀

[资料]-英语语言学期末考试试卷及答案

英语语言学期末考试试卷 第一部分选择题 I.Directions: Read each of the following statements carefully. Decide which one of the four choices best completes the statement and put the letter A, B, C or D in the brackets. (2%X10=20%) 1. Saussure’s distinction and Chomsky’s are very similar, but they differ in that ____________. A. Saussure took a sociological view of language while Chomsky took a psychological point of view B. Saussure took a psychological view of language while Chomsky took a sociological point of view C. Saussure took a pragmatic view of language while Chomsky took a semantic point of view D. Saussure took a structural view of language while Chomsky took a pragmatic point of view 2. Language is a system of ____________ vocal symbols used for human communication. A. unnatural B. artificial C. superficial D. arbitrary 3. We are born with the ability to acquire language, _______________. A. and the details of any language system are genetically transmitted B. therefore, we needn’t learn the details of our mother tongue C. but the details of language have to be learnt.

大学C语言期末考试练习题(带详解答案)

一、单项选择题 1.(A)是构成C语言程序的基本单位。 A、函数 B、过程 C、子程序 D、子例程 2.C语言程序从C开始执行。 A) 程序中第一条可执行语句B) 程序中第一个函数 C) 程序中的main函数D) 包含文件中的第一个函数 3、以下说法中正确的是(C)。 A、C语言程序总是从第一个定义的函数开始执行 B、在C语言程序中,要调用的函数必须在main( )函数中定义 C、C语言程序总是从main( )函数开始执行 D、C语言程序中的main( )函数必须放在程序的开始部分 4.下列关于C语言的说法错误的是(B)。 A) C程序的工作过程是编辑、编译、连接、运行 B) C语言不区分大小写。 C) C程序的三种基本结构是顺序、选择、循环 D) C程序从main函数开始执行 5.下列正确的标识符是(C)。 A.-a1 B.a[i] C.a2_i D.int t 5~8题为相同类型题 考点:标识符的命名规则 (1)只能由字母、数字、下划线构成 (2)数字不能作为标识符的开头 (3)关键字不能作为标识符 选项A中的“-” ,选项B中“[”与“]”不满足(1);选项D中的int为关键字,不满足(3) 6.下列C语言用户标识符中合法的是(B)。 A)3ax B)x C)case D)-e2 E)union 选项A中的标识符以数字开头不满足(2);选项C,E均为为关键字,不满足(3);选项D中的“-”不满足(1); 7.下列四组选项中,正确的C语言标识符是(C)。 A)%x B)a+b C)a123 D)123 选项A中的“%” ,选项B中“+”不满足(1);选项D中的标识符以数字开头不满足(2) 8、下列四组字符串中都可以用作C语言程序中的标识符的是(A)。 A、print _3d db8 aBc B、I\am one_half start$it 3pai C、str_1 Cpp pow while D、Pxq My->book line# His.age 选项B中的“\”,”$” ,选项D中“>”,”#”,”.”,”-”不满足(1);选项C中的while为关键

《语言学概论》期末B卷 答案解析

丽水学院 —学年第一学期期终考试试卷答案(B卷)课程语言学概论使用班级 班级:学号:姓名: 一、填空题(本大题共14空格,每空格1分,共14分) 1.在中国,早期的语言研究主要是围绕着汉字的字义、字音、字形进行的,产生了训诂学、音韵学、文字学三个分支,统称为“小学”。 2.被尊称为“19世纪的亚里土多德”的德国哲学家和数学家弗雷格于1892年提出预设的概念,他的理论被公认为人工智能的理论基础。 3.每个元音的音质是由舌位前后、舌位高低、圆唇与否3个方面的因素决定的。 4.语言的变异可以分为地域变异、社会变异和功能变异等3类。 5.言语行为理论的创始人是英国道德哲学家奥斯汀,他认为,语句有命题意义和施为意义两层意义。 二、判断是非题:对的写“√”,错的写“×”(本大题共10小题,每小题1分,共10分) (√)1.语言是一种符号系统。 (√)2.肺是人类发音的动力站,声带是发音体。 (×)3.元音发音时,声带不一定振动,辅音发音时,声带一定要振动。(√)4.超音质音位又叫“超音段音位”或“非音质音位”。 (×)5.在现代汉语普通话中,[b]和[p]是两个音位。 (√)6.福建“沙县县”简称为“沙县”体现了语言的经济机制。

(×)7.词序和虚词是俄语最重要的语法手段。 (√)8.语法手段中的“零形式”也表示语法意义。 (√)9.就其实质而言,语法规则表现的就是组合关系或聚合关系。(×)10.湖南江永的“女书”体现了语言的性别变异。 三、选择题(本大题共10小题,每小题1分,共10分) (②)1.语言符号的符号是: ①声音②文字③它所代表的事物④发音器官(④)2.我国青海五屯话是一种: ①皮钦语②洋泾浜③新美拉尼西亚语④克里奥尔语(③)3.合作原则理论的最早提出者是: ①奥斯汀②利奇③格赖斯④莫里斯(④)4.英语的man→men采用的语法手段是: ①异根式②重音③词缀④内部屈折(③)5.关于元音和辅音的区别,正确的描述是: ①元音发音时间短暂,辅音发音时间较长。 ②辅音发音响亮,元音发音不响亮。 ③发辅音气流受阻,发元音气流不受阻。 ④发元音和辅音发音器官的各个部位均衡紧张。 (④)6.俄语、汉语、日语3种语言所属的语法结构类型按次序是:①粘着语-屈折语-孤立语②屈折语-粘着语-孤立语 ③孤立语-屈折语-粘着语④屈折语-孤立语-粘着语(③)7.与“春光明媚”结构相同的组合是: ①阳光的温暖②马上开始

《语言学概论》期末试卷

语言学概论》期末试卷 1. (单选题) 下 列关于“语言”的说法,不正确的一项是(D )(本题2.0 分) A 、语言系统是由多个子系统组合而成的B 、 语言是一个符号系统 C 、 语言符号具有任意性和线条性特征D 、 语言符号的音义关系可以任意改变 2. (单选题) 下 卜列兀音音素都是后兀音的一组是(B)本题2.0分) A 、[u, £] B 、 [a , A ] C 、 [a ,y] D 、[o, a] 3. (单选题) 下 F列辅音音素都是塞音的一组是(B)(本题2.0分) A 、[k, 1] B 、[p, k] C 、[p, n] D 、[t, v] 4. (单选题)从语音的社会功能角度划分出来的最小语音单位是

(A)(本题2.0分) A 、音位 B 、 曰素 C 、 音节 D 、 音渡 5.(单选题)汉语普通话中的“我”和助词“的”单念时发音分别 为[uo]和[te],而在实际语流中,“我的”发音是[uo de],这是语流音变中的(A)本题2.0分) A 、顺同化现象 B 、 逆同化现象 C 、 弱化现象 D 、 异化现象 6.(单选题)语音的本质属性是(C )本题2.0分) A 、物理属性 B 、 生理属性 C 、 社会属性 D 、 心理属性 7.(单选题)英语“students”中的“-s”是(C)本题2.0分)

A 、虚词语素 B 、 词根语素 C 、 构形语素 D 、 构词语素 8.(单选题)从词的构造方式看,下列各项中属于复合词的是(D)本题2.0分) A 、木头 B 、 念头 C 、 苦头 D 、 山头 9.(单选题)划分词类的最本质的标准是(A )(本题2.0分) A 、分布标准 B 、 意义标准 C 、 形态标准 D 、 逻辑标准 10.(单选题)下面词组中,结构类型与其他各组不冋的一组是(D)本题2.0分) A 、年轻漂亮/朴素大方 B 、我们大家/首都北京 C、铁路民航/工人农民 D、贯彻执行/讨论研究

2013年c语言期末考试题

1、给定n 个数据, 求最小值出现的位置(如果最小值 出现多次,求出第一次出现的位置即可)。 最大值 第三行i<=n 五行k+1 2、编写程序求无理数e 的值 并输出。计算公式为: e=1+1/1!+1/2!+1/3!+......+1/n! 当1/n!<0.000001时e=2.718282。 3、求一批数中最大值和最小值的积。 4、某一正数的值保留2位小数,对第三位进行四舍 五入。 5、从键盘上输入任意实数x,求出其所对应的函数值。 z=(x-4)的二次幂(x>4) z=x 的八次幂(x>-4) z=z=4/(x*(x+1))(x>-10) z=|x|+20(其他) 6、求出N ×M 整型数组的最大元素及其所在的行坐标 及列坐标(如果最大元素不唯一,选择位置在最前面 的一个)。 例如:输入的数组为: 1 2 3 4 15 6 12 18 9 10 11 2 求出的最大数为18,行坐标为2,列坐标为1。 7、求一个n 位自然数的各位数字的积。(n 是小于10的 自然数) 8、计算n 门课程的平均值,计算结果作为函数值返回。 例如:若有5门课程的成绩是:92,76,69,58,88, 则函数的值为76.599998。 9、求一批数中小于平均值的数的个数。 10、编写函数判断一个整数m 的各位数字之和能否被7整除, 可以被7整除则返回1,否则返回0。调用该函数找出 100~200之间满足条件的所有数。 11、请编一个函数void fun(int tt[M][N],int pp[N]), tt 指向一个M 行N 列的二维数组,求出二维数组每列 中最大元素,并依次放入pp 所指一维数组中。二维 数组中的数已在主函数中赋予。

语言学概论考试B评分标准与答案

天津师范大学考试 2010—2011 学年第二学期期末考试 《语言学概论》试卷( B 卷)答案及评分标准 一、填空题: (每空0.5 分,本大题共10 分)1.表意文字表音文字 2.发音时气流是否受阻 3.历史稳定性(稳固性)全民常用性(全民性)构词的能产性(能 产性) 4、增添删除(删减) 5.渐变性不平衡性 6.清浊,舌位高舌位低 7.时位调位重位8.舌位的高低、舌位的前后、唇形的圆展(圆与不圆) 二、名词解释。(每小题2 分,本大题共10 分)1.语音:2. 历史比较语言学: 3. 条件变体: 4. 性: 5. 方言词: 三、分析题: (本大题共30 分,每小题6 分) 1. 分析下列句法结构中歧义出现的原因并加以分化(6 分) A 爱慕的是小王:分化:别人爱慕的人是小王;小王爱慕的是别人。歧义出现的原因是 “小王”的施受关系不明。 B 王熙凤也不知道哪儿去了分化:别人也不知道王熙凤哪儿去了,王熙凤也不知道别 人哪儿去了。歧义出现的原因是“王熙凤”的施受关系不明。 C 修了一条乡村公路分化:把一条(坏了的)乡村公路修好了;修出(成)了一条乡村公路。 歧义出现的原因是“路”到底是表示结果还是表示受事关系不明。 D 这个灯笼挂了一天了 分化:这个灯笼已经挂上去了,挂上去的时间是一天。这个灯笼挂了一天了还没有挂上去。 歧义出现的原因是动词“挂”既有“持续”的语义特征,又有“完成” 的语义特

征。 2. 用严式国际音标给下列汉字注音(6 分)春眠不觉晓花落知多少答案略 3. 分析下列各词的结构类型,并指出各语素的性质:(6 分) 学员:附加式(派生词);词根+后缀。烟头儿:附加式(派生词);词根+词根+后缀。秋千:单纯词;双声词。 Returns:附加式;词干+词尾。blackboard :复合词;词根+词根。 抗菌素:复合词;前缀+词根+词根。 4. 下列语言属于不同的语系,试将它们进行分类(6 分)印欧语系:西班牙语、波兰语、印地语、德语、意大利语;阿尔泰语系:哈萨克语、满语、蒙古语; 南岛语系:高山语;南亚语系:佧瓦语;闪——含语系:阿拉伯语汉藏语系:苗语。评分标准:错一项扣一分。 5. 用语音术语描述下列辅音(6 分)(1)[v] 唇齿浊擦音。 (2)[L] 舌尖中浊边音。 (3)[ts] 舌尖前不送气清塞擦音。 (4)[p h] 双唇送气清塞音。 (5)[x] 舌面后(舌根)清擦音。 (6)[z] 舌尖前浊擦音。 四、简答题: (每小题10 分,本大题共30 分) 1. 请用具体的例子说明共时语言学和历时语言学的区别(10 分)共时语言学,又叫静态语言学。它以语言在历史发展过程中某一特定状态中的语言系统为研究对象,揭示语言的内部结构规律,分析各种语言单位,描写语言规则,而不考虑时间的因素。 (3 分) 历时语言学,又叫动态语言学,它研究语言的历史发展,描写和研究语言从一个时期到另一个时期的演变方式,研究这种演变在语言内部和外部的 原因。(3 分) 举例4 分,各举两个以上,分别得二分。仅各举一例,分别得一分。 2. 请简要回答洋泾浜与克里奥尔的区别(10 分) 洋泾浜是指某些与外族人接触较多的地区,因语言相互影响而形成的一种特殊的语言现象。(2 分) 克里奥尔又叫混合语,指各种语言频繁接触的地区出现的包含不同语言成分的混合的自然语言。(2 分) 二者不同的是:

语言学期末考试重点

What is language? “ Language is a system of arbitrary vocal symbols used for human communication.” System: linguistic elements are arranged systematically, rather than randomly. Arbitrary: e.g. book Symbolic: people use the sounds or vocal forms to symbolize what they wish to refer to. V ocal: language is primarily vocal, rather than written Human-specific: Design features of language 语言的本质特征Arbitrariness (任意性) Saussure: the forms of linguistic signs bear no natural relationship to their meaning Arbitrary relationship between the sound of a morpheme and its meaning, even with onomatopoeic words: The dog barks bow wow in English but “汪汪汪”in Chinese. Onomatopoeia: words that sound like the sounds they describe Duality (二重性)Language consists of two levels of structures. The lower (secondary) level is a definite set of meaningless sounds which combine to form meaningful units (morphemes, words, such as he, left) which constitute a higher (primary) level. Productivity or Creativity (创造性)Because of duality the human speaker is able to combine the basic linguistic units to form an infinite set of sentences, most of which are never before produced or heard. Words can be used in new ways to mean new things, and can be instantly understood by people who have never come across that usage before. Displacement(移位性)One can talk about things that are not present, as easily as he does things present. In other words, one can refer to real and unreal things, things of the past, of the present, of the future. Our language enables us to communicate about things that do not exist or do not yet exist. e.g. A dog cannot tell people that its master will be home in a few days. Cultural transmission(文化传递性)Language is culturally transmitted. It cannot be transmitted through heredity. e.g. a person learns to speak is a cultural one other than a genetic one like the dog’s barking system. e.g. a Chinese baby born and brought up in London an English child brought up in Beijing Interchangeability(互换性)It refers to that man can both produce and receive message. One can be a speaker or a hearer Specialization (专门性)It refers to the fact that man does not have a total physical involvement in the act of communication

相关主题
文本预览
相关文档 最新文档