BwgarynC语言试题及答案2

BwgarynC语言试题及答案2
BwgarynC语言试题及答案2

Time will pierce the surface or youth, will be on the beauty of the ditch dug a shallow groove ; Jane will eat rare!A born beauty, anything to escape his sickle sweep

.-- Shakespeare

一、选择题((1)-(40)题每题1分,(41)-(50)题每题2分,共60分)

下列各题A) 、B)、C)、D)四个选项中,只有一个选项是正确的,请将正确的选项涂写在答题卡相应位置上,答在试卷上不得分。

(1) 用8位无符号二进制数能表示的最大十进制数为

A) 127 B) 128 C) 255 D) 256

(2) 在64位高档微机中,一个字长所占的二进制位数为

A) 8 B) 16 C) 32 D) 64

(3) 在Windows环境下,为了复制一个对象,在用鼠标拖动该对象时应同时按住

A) Alt键 B) Esc键 C) Shift键 D) Ctrl键

(4) 在Windows菜单中,暗淡(灰色)的命令项表示该命令

A) 暂时不能用 B) 正在执行 C) 包含下一层菜单 D) 包含对话框

(5) 在DOS环境下,为了得到TYPE命令的帮助信息,正确的DOS命令为

A) TYPE B) TYPE/H C) TYPE/* D) TYPE/?

(6) 下列选项中,能作为合法DOS文件名的是

A) ANP/A.DAT B) ABCCOM C) ECD.BASIC D) XY+Z.TXT

(7) 下列叙述中正确的是

A) 在Windows环境下,最大化的窗口是不能移动的

B) 在Windows环境下,应用程序窗口最小化后,该应用程序暂停执行

C) 在Windows环境下,只有最小化的窗口才能关闭

D) 在Windows环境下,不能关闭最小化窗口

(8) 在Windows环境下,工具栏中用于完成复制操作的按钮是

A) 打印按钮 B) 剪切按钮 C) 复制按钮 D) 粘贴按钮

(9) 在Windows环境下,若要将整个屏幕上显示的内容存入剪贴板,可以按

A) Ctrl+Printscreen键 B) Alt+Printscreen键

C) Shift+Printscreen键 D) Printscreen键

(10) 目前,计算机病毒扩散最快的途径是

A) 通过软件复制 B) 通过网络传播

C) 通过磁盘拷贝 D) 运行游戏软件

(11) 以下叙述正确的是

A) C语言比其他语言高级

B) C语言可以不用编译就能被计算机识别执行

C) C语言以接近英语国家的自然语言和数学语言作为语言的表达形式

D) C语言出现的最晚、具有其他语言的一切优点

(12) C语言中用于结构化程序设计的三种基本结构是

A) 顺序结构、选择结构、循环结构

B) if、switch、break

C) for、while、do-while

D) if、for、continue

(13) 在一个C语言程序中

A) main函数必须出现在所有函数之前

B) main函数可以在任何地方出现

C) main函数必须出现在所有函数之后

D) main函数必须出现在固定位置

(14) 下列叙述中正确的是

A) C语言中既有逻辑类型也有集合类型

B) C语言中没有逻辑类型但有集合类型

C) C语言中有逻辑类型但没有集合类型

D) C语言中既没有逻辑类型也没有集合类型

(15) 下列关于C语言用户标识符的叙述中正确的是

A) 用户标识符中可以出现下划线和中划线(减号)

B) 用户标识符中不可以出现中划线,但可以出现下划线

C) 用户标识符中可以出现下划线,但不可以放在用户标识符的开头

D) 用户标识符中可以出现下划线和数字,它们都可以放在用户标识符的开头

(16) 若有以下程序段(n所赋的是八进制数)

int m=32767,n=032767;

printf("%d,%o\n",m,n);

执行后输出结果是

A) 32767,32767

B) 32767,032767

C) 32767,77777

D) 32767,077777

(17) 下列关于单目运算符++、--的叙述中正确的是

A) 它们的运算对象可以是任何变量和常量

B) 它们的运算对象可以是char型变量和int型变量,但不能是float型变量

C) 它们的运算对象可以是int型变量,但不能是double型变量和float型变量

D) 它们的运算对象可以是char型变量、int型变量和float型变量

(18) 若有以下程序段

int m=0xabc,n=0xabc;

m-=n;

printf("%X\n",m);

执行后输出结果是

A) 0X0 B) 0x0 C) 0 D) 0XABC

(19) 有以下程序段

int m=0,n=0; char c='a';

scanf("%d%c%d",&m,&c,&n);

printf("%d,%c,%d\n",m,c,n);

若从键盘上输入:10A10<回车>,则输出结果是:

A) 10,A,10 B) 10,a,10 C) 10,a,0 D) 10,A,0

(20) 有以下程序

main()

{ int i;

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

switch(i)

{ case 1: printf("%d",i);

case 2: printf("%d",i);

default: printf("%d",i);

}

}

执行后输出的结果是

A) 011122 B) 012 C) 012020 D) 120

(21) 有以下程序

main()

{ int i=1,j=1,k=2;

if((j++||k++)&&i++) printf("%d,%d,%d\n",i,j,k); }

执行后输出的结果是

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

(22) 有以下程序

main()

{ int a=5,b=4,c=3,d=2;

if(a>b>c)

printf("%d\n",d);

else if((c-1>=d)==1)

printf("%d\n",d+1);

else

printf("%d\n",d+2);

}

执行后输出的结果是

A) 2 B) 3 C) 4 D) 编译时有错,无结果

(23) 有以下程序

main()

{ int p[7]={11,13,14,15,16,17,18},i=0,k=0; while(i<7&&p[i]%2){k=k+p[i]; i++;}

printf("%d\n",k);

}

执行后输出的结果是

A) 58 B) 56 C) 45 D) 24

(24) 有以下程序

main()

{ int i=0,s=0;

do{

if(i%2){i++;continue;}

i++;

s+=i;

} while(i<7);

printf("%d\n",s);

}

执行后输出的结果是

A) 16 B) 12 C) 28 D) 21

(25) 有以下程序

main()

{ int i=10,j=1;

printf("%d,%d\n",i--,++j);

}

执行后输出的结果是

A) 9,2 B) 10,2 C) 9,1 D) 10,1

(26) 有以下程序

main()

{ char a,b,c,*d;

a='\'; b='\xbc';

c='\0xab'; d="\0127";

printf("%c%c%c%c\n",a,b,c,*d);

}

编译时出现错误,以下叙述中正确的是

A) 程序中只有a='\';语句不正确

B) b='\xbc';语句不正确

C) d="\0127";语句不正确

D) a='\';和 c='\0xab';语句都不正确

(27) main()

{int a=4,b=3,c=5,d,e,f;

d=f1(a,b); d=f1(d,c);

e=f2(a,b); e=f2(e,c);

f=a+b+c-d-e;

printf("%d,%d,%d\n",d,f,e);

}

执行后输出的结果是

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

(28) 有以下程序

void f(int x,int y)

{ int t;

if(x

}

main()

{ int a=4,b=3,c=5;

f(a,b); f(a,c); f(b,c);

printf("%d,%d,%d\n",a,b,c);

}

执行后输出的结果是

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

(29) 若有一些定义和语句

#include

int a=4,b=3,*p,*q,*w;

p=&a; q=&b; w=q; q=NULL;

则以下选项中错误的语句是

A) *q=0; B) w=p; C) *p=va; D) *p=*w;

(30)有以下程序

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

{ if(*x<*y)

return x;

else

return y;

}

main()

{ int a=7,b=8,*p,*q,*r;

p=&a; q=&b;

r=f(p,q);

printf("%d,%d,%d\n",*p,*q,*r);

}

执行后输出结果是

A) 7,8,8 B) 7,8,7 C) 8,7,7 D) 8,7,8

(31)有以下程序

main()

{ char *s[]={"one","two","three"},*p;

p=s[1];

printf("%c,%s\n",*(p+1),s[0]);

}

执行后输出结果是

A) n,two B) t,one C) w,one D) o,two

(32)有以下程序

main()

{ int x[8]={8,7,6,5,0,0},*s;

s=x+3;

printf("%d\n",s[2]);

}

执行后输出结果是

A) 随机值 B) 0 C) 5 D) 6

(33) 以下能正确定义数组并正确赋初值的语句是

A) int N=5,b[N][N];

B) int a[1][2]={{1},{3}};

C) int c[2][]={{1,2},{3,4}};

D) int d[3][2]={{1,2},{3,4}};

(34)有以下程序

main()

{ int m[][3]={1,4,7,2,5,8,3,6,9};

int i,j,k=2;

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

{ printf("%d ",m[k][i]); }

}

执行后输出结果是

A) 4 5 6 B) 2 5 8 C) 3 6 9 D) 7 8 9

(35) 以下函数的功能是:通过键盘输入数据,为数组中的所有元素赋值。

#define N 10

void arrin(int x[N])

{ int i=0;

while(i

scanf("%d",_________);

}

在下划线处应填入的是

A) x+i B) &x[i+1] C) x+(i++) D) &x[++i]

(36) 有以下程序

main()

{ char s[]="\n123\\";

printf("%d,%d\n",strlen(s),sizeof(s));

}

执行后输出结果是

A) 赋初值的字符串有错 B) 6,7 C) 5,6 D) 6,6

(37) 阅读以下函数

fun(char *sl,char *s2)

{ int i=0;

while(sl[i]==s2[i]&&s2[i]!='\0') i++;

return(sl[i]=='\0'&&s2[i]=='\0');

}

此函数的功能是

A) 将s2所指字符串赋给s1

B) 比较s1和s2所指字符串的大小,若s1比s2的大,函数值为1,否则函数值为0

C) 比较s1和s2所指字符串是否相等,若相等,函数值为1,否则函数值为0

D) 比较s1和s2所指字符串的长度,若s1比s2的长,函数值为1,否则函数值为0

(38) 以下叙述中正确的是

A) 全局变量的作用域一定比局部变量的作用域范围大

B) 静态(static)类别变量的生存期贯穿于整个程序的运行期间

C) 函数的形参都属于全局变量

D) 未在定义语句中赋初值的auto变量和static变量的初值都是随机值

(39) 设有如下说明

typedef struct

{ int n; char c; double x;}STD;

则以下选项中,能正确定义结构体数组并赋初值的语句是

A) STD tt[2]={{1,'A',62},{2,'B',75}};

B) STD tt[2]={1,"A",62,2,"",75};

C) struct tt[2]={{1,'A'},{2,'B'}};

D) struct tt[2]={{1,"A",62.5},{2,"B",75.0}};

(40) 有以下程序

main()

{ union{ unsigned int n;

unsigned char c;

}ul;

ul.c='A';

printf("%c\n",ul.n);

}

执行后输出结果是

A) 产生语法错 B) 随机值 C) A D) 65

(41) 有以下程序

main()

{ char str[]="xyz",*ps=str;

while(*ps) ps++;

for(ps--;ps-str>=0;ps--) puts(ps);}

执行后输出结果是

A) yz<回车>xyz B) z<回车>yz

C) z<回车>yz<回车>xyz D) x<回车>xy<回车>xyz

(42) 有以下程序

main()

{int a[][3]={{1,2,3},{4,5,0}},(*pa)[3],i;

pa=a;

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

if(i<2) pa[1][i]=pa[1][i]-1;

else pa[1][i]=1;

printf("%d\n",a[0][1]+a[1][1]+a[1][2]);

}

执行后输出结果是

A) 7 B) 6 C) 8 D) 无确定值

(43) 有以下程序

void fun(int *a,int i,int j)

{ int t;

if (i

{ t=a[i];a[i]=a[j];a[j]=t;

fun(a,++i,--j);

}

}

main()

{ int a[]={1,2,3,4,5,6},i;

fun(a,0,5);

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

printf("%d",a[i]);

}

执行后输出结果是

A) 6 5 4 3 2 1 B) 4 3 2 1 5 6

C) 4 5 6 1 2 3 D) 1 2 3 4 5 6

(44) 有以下程序

main(int argc,char *argv[])

{ int n,i=0;

while(argv[1][i]!='\0')

{ n=fun(); i++;}

printf("%d\n",n*argc);

}

int fun()

{ static int s=0;

s+=1;

return s;

}

假设程序编译、连接后生成可执行文件exam.exe,若键入以下命令

exam 123〈回车〉

则运行结果为

A) 6 B) 8 C) 3 D) 4

(45) 以下程序中,能够通过调用函数fun,使main函数中的指针变量p指向一个合法的整型单元的是

A) main()

{int *p;

fun(p);… }

int fun(int *p)

{ int s;

p=&s;}

B) main()

{int *p;

fun(&p);…}

int fun(int **p)

{int s;

*p=&s;}

C) #include

main()

{int *p;

fun(&p);…}

int fun(int **p)

{*p=(int*)malloc(2);}…

D) #include

main()

{int *p;

fun(p);…}

int fun(int *p)

{p=(int*)malloc(sizeof(int));}

(46) 若要说明一个类型名STP,使得定义语句STP s;等价于char *s;,以下选项中正确的是

A) typedef STP char *s;

B) typedef *char STP;

C) typedef STP *char;

D) typedef char* STP ;

(47) 设有如下定义

struct ss

{ char name[10];

int age;

char sex;

} std[3],* p=std;

下面各输入语句中错误的是

A) scanf("%d",&(*p).age);

B) scanf("%s",&https://www.360docs.net/doc/8b1467774.html,);

C) scanf("%c",&std[0].sex);

D) scanf("%c",&(p->sex));

(48) 设char型变量x中的值为10100111,则表达式(2+x)∧(~3)的值是

A) 10101001 B) 10101000 C) 11111101 D) 01010101

(49) 以下叙述中不正确的是

A) C语言中的文本文件以ASCII码形式存储数据

B) C语言中对二进制位的访问速度比文本文件快

C) C语言中,随机读写方式不使用于文本文件

D) C语言中,顺序读写方式不使用于二进制文件

(50) 以下程序企图把从终端输入的字符输出到名为abc.txt的文件中,直到从终端读入字符#号时结束输入和输出操作,但程序有错。

#include

main()

{ FILE *fout; char ch;

fout=fopen('abc.txt','w');

ch=fgetc(stdin);

while(ch!='#')

{ fputc(ch,fout);

ch =fgetc(stdin);

}

fclose(fout);

}

出错的原因是

A) 函数fopen调用形式有误

B) 输入文件没有关闭

C) 函数fgetc调用形式有误

D) 文件指针stdin没有定义

二) 填空题(每空2分,共40分)

请将每一个空的正确答案写在答题卡【1】至【20】序号的横线上,答在试卷上不得分。(1) 用十六进制给存储器中的字节地址进行编号,若地址编号从0000到FFFF,则该存储器的容量为【1】KB。

(2) 假设在当前盘的当前目录下有两个文件A.TXT和B.TXT,现在要将文件B.TXT合并连接到文件A.TXT的后面。若使用COPY命令,则完整的命令为【2】。

(3) E-mail地址由用户名和域名两部分组成,这两部分的分隔符为【3】。

(4) 假设在当前盘当前目录下有一个可执行程序USER.EXE。现要执行该程序,并要求在执行过程中将显示输出的结果信息存入当前盘当前目录的文件OUT.DAT中,则完整的DOS命令为【4】。

(5) 在DOS环境下,表示打印机的设备文件名是【5】。

(6) 若有语句

int i=-19,j=i%4;

printf("%d\n",j);

则输出的结果是【6】。

(7) 若有程序

main()

{ int i,j;

scanf("i=%d,j=%d",&i,&j);

printf("i=%d,j=%d\n ",i,j);

}

要求给i赋10,给j赋20,则应该从键盘输入【7】。

(8) 若有以下程序

main()

{ int p,a=5;

if(p=a!=0)

printf("%d\n",p);

else

printf("%d\n",p+2);

}

执行后输出结果是【8】。

(9) 若有以下程序

main()

{ int a=4,b=3,c=5,t=0;

if(a

if(a

printf("%d %d %d\n",a,b,c);

}

执行后输出结果为【9】。

(10) 若有以下程序

main()

{ int a[4][4]={{1,2,-3,-4},{0,-12,-13,14} ,{-21,23,0,-24},{-31,32,-33,0}};

int i,j,s=0;

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

{ for(j=0;j<4;j++)

{ if(a[i][j]<0) continue;

if(a[i][j]==0) break;

s+=a[i][j];

}

}

printf("%d\n",s);

}

执行后输出结果是【10】。

(11) 若有以下程序

main()

{ char a;

a='H'-'A'+'0';

printf("%c\n",a);

}

执行后输出结果是【11】。

(12) 若有以下程序

int f(int x,int y)

{ return(y-x)*x; }

main()

{ int a=3,b=4,c=5,d;

d=f(f(3,4),f(3,5));

printf("%d\n",d);

}

执行后输出结果是【12】。

(13) 函数YangHui的功能是把杨辉三角形的数据赋给二维数组的下半三角,形式如下1

1 1

1 2 1

1 3 3 1

1 4 6 4 1.

其构成规律是:

(1)第0列元素和主对角线元素均为1

(2)其余元素为其左上方和正上方元素之和

(3)数据的个数每行递增1

请将程序补充完整。

#define N 6

void yanghui(int x[N][N])

{ int i,j;

x[0][0]=1;

for(i=1;i

{ x[i][0]=【13】=1;

for(j=1;j

x[i][j]=【14】;

}

}

(14) 以下函数的功能是删除字符串s中的所有数字字符。请填空。

viod dele(char *s)

{ int n=0,i;

for(i=0;s[i];i++)

if(【15】)

s[n++]=s[i];

s[n]=【16】;

}

(15) 设函数findbig已定义为求3个数中的最大值。以下程序将利用函数指针调用findbig 函数。请填空。

main()

{ int findbig(int,int,int);

int (*f)(),x,y,z,big;

f=【17】;

scanf("%d%d%d",&x,&y,&z);

big=(*f)(x,y,z);

printf("big=%d\n",big);

}

(16) 以下程序的输出结果是【18】。

#define MCRA(m) 2*m

#define MCRB(n,m) 2*MCRA(n)+m

main()

{ int i=2,j=3;

printf("%d\n",MCRB(j,MCRA(i)));

}

(17) 设有以下定义

stuct ss

{ int info; struct ss *link;}x,y,z;

且已建立如下图所示链表结构:

_____ _____ _____

| | | | | | | | |

| | -|→| | -|→| | |

|__|__| |__|__| |__|__|

x y z

请写出删除结点y的赋值语句【19】。

(18) 已有文本文件test.txt,其中的内容为:Hello,everyone!。以下程序中,文件test.txt 已正确为“读”而打开,由此文件指针fr指向文件,则程序的输出结果是【20】。

#include

main()

{ FILE *fr; char str[40];

......

fgets(str,5,fr);

printf("%s\n",str);

fclose(fr);

}

2003年4月全国计算机等级考试二级C笔试答案(仅供参考)一、选择题

1-5:CDDAD 6-10:BACDB 11-15:CABDB 16-20:ADCAA

21-25:CBDAB 26-30:DCDAB 31-35:CBDCC 36-40:CCBAC 41-45:CAAAC 46-50:DBDDA

二、填空题

(1) 64

(2) COPY A.TXT+B.TXT A.TXT

(3) @

(4) USER >OUT.DAT

(5) PRN或LPT1或LPT2

(6) -3

(7) i=10,j=20

(8) 1

(9) 5 0 3

(10) 58

(11) 7

(12) 9

(13) x[i][i]和x[i-1][j-1]+x[i-1][j]

(14) !(s[i]>='0'&&s[i]<='9')和'\0'

(15) findbig

(16) 16

(17) x.link=y.link;

(18) Hell

(全新整理)1月全国自考语言与文化试题及答案解析

全国2018年1月高等教育自学考试 语言与文化试题 课程代码:00838 Ⅰ.Each of the following incomplete statements is followed by four alternatives. Read each statement and the four alternatives carefully and decide which of the four alternatives best completes the statement.(20%) 1.“Negro”,once a euphemism for “_______”, is now an offensive racist term.() A.a black man B.nigger C.an African D.black boy 2.The expression that can be used as the euphemism for “gardener”is “_______”.() A.landscape architect B.garden designer C.beautician D.botanist 3.I may be back tonight; I’m not sure. _______,just make yourself at home.() A.However B.Despite this C.Either way D.Still 4.He showed no pleasure at hearing the news. _______ he looked even gloomier.() A.Alternatively B.I mean C.In addition D.Instead 5.“他住在美国马萨诸塞州剑桥神德街2号”can be translated into _______.() A.He lives at Divinity Avenue 2, Cambridge, Massachusetts, U.S.A. B.He lives at Divinity Avenue 2 in Cambridge of Massachusetts, U.S.A. C.He lives at 2 Divinity Avenue Cambridge, Massachusetts, U.S.A. D.He lives in U.S.A, Massachusetts, Cambridge, Divinity Avenue 2. 6._______ is a weapon name.() A.Brenda B.Arthur C.Rhoda D.Timothy 7.When receiving a gift, the English speakers normally say_______.() A.“It’s very nice” B.“Where did you get it? This is really what I want” C.“It must have cost you a lot. Thank you very much” D.“How much is it? Thank you very much” 1

语言学概论题目及答案

语言学概论试题(一) 一、填空(每空1分,共15分) 1.语言中最单纯、最常用、最原始和最能产的词是根词。 2.语言是人类最重要的交际工具,文字是最重要的辅助交际工具。 ?3.我国古代学者为读懂古书而建立的训诂学、文字学、音韵学组成了我国的语文学,通称为“小学”。 4.英语属于印欧语系的日耳曼语族的西部语支。 ?5.语音可以从生理角度分析它的产生方式,从物理角度分析它的表现形式传递过程,从社会功能角度分析它的功能作用。 6.是否能够独立运用,是区分词和语素的根本特点。 ?7.现代大多数国家的拼音文字的字母,大多直接来源于拉丁字母。 ?8.具有不同功能的三种最基本的语法单位是语素、词、句子。 ?9.语言发展的主要特点是渐变性和不平衡性。 ?10.我国宪法 1982年第19条明确规定“国家推广全国通用的普通话”。 二、选择题(每题1分,共10分)?????? 1. 中国的传统语文学研究的薄弱环节是( D ) ??A.文字学B.语音学? ?C.词汇学D.语法学 ?2. 汉语属于( B ) ?A.屈折语B.孤立语 ?C.多式综合语D.粘着语 ?3. 一种语言中数量最少的是( B ) ??A.音素B.音位 ??C.语素D.音节 ?4. 文字的前身是( C ) ??A.结绳记事B.手势 ??C.图画记事D.实物记事 ?5. 派生词中包含( B ) ??A.词尾B.词根 ??C.虚词D.根词 ?6. 语音和语义结合的最小的语言单位是( C ) ??A.音素B.义素 ??C.语素D.音位 7. 汉语单词“忽然”出现的位置是( C ) ??A.主语位置B.谓语位置 ??C.状语位置D.定语位置 8. 以下各种语言变体中,属于社会方言的是( D ) ???A.土话B.客家话 ???C.客套话D.黑话 9. 下列语素中属于自由语素的是( C ) ???A.初B.视 ???C.人D.民 10. 在语言结构的某一环节上能够互相替换,?具有某种相同作用的各个单位之间所形成的关系叫( D ) ??A.转换关系B.组合关系 ??C.层级关系D.聚合关系 三、名词解释(每题4分,共20分) ?1.专语语言学以具体语言作为研究对象的语言学。 2.组合关系指两个以上相连续的语言符号组合而成的线性关系。 3.语流音变语流中的某些音由于相互影响而发生临时性的变化,这种变化就叫语流音变。 4.语义场由具有某些共同义素的一群词类聚而成的场。 5.语法范畴把同一性质的语法意义综合和概括所形成的语法意义的类别。 四、试以国际音标标出下列各词的读音(每题2分,共10分) 1.优秀 2.维持 3.宏观 4.精神 5.离开 五、用义素分析法分析下列各组词(每题3分,共9分) ?1.瞻仰 [+用眼 +往一定方向 +崇敬地]

最新1月全国自考现代语言学试题及答案解析.docx

全国 2018 年 1 月自学考试现代语言学试题 课程代码: 00830 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%×10=20% ) 1. The language behavior of particular persons on particular occasions is determined by many other factors over and above their linguistic ______. () A. system B. structure C. competence D. performance 2. When we pronounce the long vowels [i:] or [u:], our ______, which is a bony structure at the end of the windpipe, is in a state of tension. () A. larynx B. hard palate C. glottis D. vocal cords 3. The word “ manuscript ” is a two-morpheme cluster which contains ______. () A. two roots B. a root and a prefix C. a root and a suffix D. a root and a free morpheme 4. The grammatical knowledge is represented through Phrase Structure Rules,which state explicitly all and only the possible combinations of the ______ of a language, for example, in English, NP→ ( Det ) (Adj) N (PP) (S).) A. phrases B. clauses C. sentences D. constituents 5. The view that the meaning of a linguistic form is defined as the“ situation in which the speaker utters it and the response it calls forth in the hearer ” was proposed by ______. () A. Plato B. Ogden and Richards C. John Firth D. Bloomfield 6. According to John Austin's theory of speech act, a(n) ______ act is the change brought about by the utterance. () 1

语言学概论试题及答案

一、填空题:(每空1 分,本大题共10 分) 1. ()语言学是在19世纪逐步发展和完善的,它是语言学 走上独立发展道路的标志。 2. 人的大脑分左右两半球,大脑的左半球控制( 掌管不需要语言的感性直观思维。 3. 进入20世纪以后,语言研究的主流由历史比较语言学转为 ()。 4. 俄语属于印欧语系的( 5. 一个音位包含的不同音素或者具体表现出来的音素叫做 ()。 6. 语言中最单纯、最常用、最原始和最能产的词是( 7. 现代大多数国家的拼音文字的字母,大多直接来源于()字 母。 8. 言外之意之所以能够被理解是因为()起了补充说明的 作用。 9. 方言在社会完全分化的情况下,有可能发展成(? )?; 在社会高度统一的情况下,会逐渐被共同语消磨直到同化。 10. 南京方言的“兰”、“南”不分,从音位变体的角度来说,[n ]和[l]是 属于()变体。 二、单项选择题: 码填在题干上的括号内。(每小题1 分,本大题共15 分)

1. 在二十世纪,对哲学、人类学、心理学、社会学等学科产生重大影响 的语言学流派是() A.历史比较语言学 B.心理语言学 C.结构主义语言学 D.社会语言学 2. “人有人言,兽有兽语”中的“言”属于() A.语言 B.言语 C.言语行为 D.言语作品 3. “我爱家乡”中“爱”和“家乡”() A.是聚合关系。 B.是组合关系。 C.既是聚合关系又是组合关系。 D. 4. 一种语言中数量最少的是 A.音素 B.音位 C.语素 D.音节 5. 英语的man—→men采用的语法手段是 A. 屈折变化 B.变换重音的位置 C. 变化中缀 D.异根 6. 在汉语普通话中没有意义区别功能的声学特征是() A.音高 B.音强 C.音长 D.音质 7. [ε]的发音特征是 A.舌面前高不圆唇 B.舌面后高不圆唇 C.舌面前半高不圆唇 D.舌面前半低不圆唇 8. 构成“语言、身体”这两个词的语素的类型() A.都是成词语素 B.都是不成词语素 C.“语”和“言”是成词语素,“身”和“体”是不成词语素 D.“语”和“言”是不成词语素,“身”和“体” 9. 广义地说,汉语动词词尾“着”、“了”、“过”属于语法范畴中的 ()

尔雅_语言与文化答案

本套题正确率15/168=91% 人类起源非洲假说的语言学分析(一)已完成 1 下列关于人类起源非洲假说的内容中正确的是()。 ?A、能人走出非洲 ?B、南猿人走出非洲 ?C、元谋人走出非洲 ?D、直立人走出非洲 我的答案:D 2 下列哪一项是人类进化的形态之一?() ?A、山顶洞人 ?B、智人 ?C、北京人 ?D、元谋人 我的答案:B 3 符号活动出现于()。 ?A、南猿时期 ?B、直立人时期 ?C、晚期智人 ?D、早期智人 我的答案:C 4 人类起源非洲假说是指人类发源于非洲,然后移动到世界各地。()我的答案:√ 5 某一人群的mtDNA变异越大,它的群体演化历史越短。() 我的答案:×

人类起源非洲假说的语言学分析(二)已完成 1 非洲智人最早移动到哪一大洲?() ?A、北美洲 ?B、南美洲 ?C、亚洲 ?D、澳洲 我的答案:C 2 非洲智人什么时候开始走出非洲?() ?A、20万年前 ?B、13万年前 ?C、15万年前 ?D、10万年前 我的答案:A 3 下列哪一项事物的出现不能标志着智人具有了一定的符号编码能力?() ?A、图画 ?B、雕刻 ?C、文字 ?D、瓷器 我的答案:D 4 智人走出非洲有几条路线?()

?B、2 ?C、3 ?D、4 我的答案:B 5 直立人是语言人,智人不是语言人。() 我的答案:× 6 人类起源非洲假说为人类的基因和语言研究提供了重要依据。()我的答案:√ 人类起源非洲假说的语言学分析(三)已完成1 脑容量与语言的关系是()。 ?A、正相关 ?B、负相关 ?C、没关系 ?D、不确定 我的答案:A 2 方言的形成有几种方式?()

语言学概论试题及答案

语言学概论试题及答案 分享 首次分享者:◇﹎ゞ丫丫℡已被分享11次评论(0)复制链接分享转载举报语言学概论形成性考核作业及参考答案 语言学概论作业1 导言、第一章、第二章 一、名词解释 1、历时语言学——就各种语言的历史事实用比较的方法去研究它的“亲属”关系和历史发展的,叫历时语言学。 2、语言——语言是一种社会现象,是人类最重要的交际工具和进行思维的工具。就语言本身的结构来说,语言是由词汇和语法构成的系统。 3、符号——符号是用来代表事物的一种形式,词这样的符号是声音和意义相结合的统一体。任何符号都是由声音和意义两方面构成的。 4、语言的二层性——语言是一种分层装置,其底层是一套音位;上层是音义结合的符号和符号的序列,这一层又分为若干级,第一级是语素,第二级是由语素构成的词,第三级是由词构成的句子。 5、社会现象——语言是一种社会现象和人类社会有紧密的联系。所谓“社会”,就是指生活在一个共同的地域中,说同一种语言,有共同的风俗习惯和文化传统的人类共同体。语言对于社会全体成员来说是统一的、共同的;另一方面,语言在人们的使用中可以有不同的变异、不同的风格。 二、填空 1、结构主义语言学包括布拉格学派、哥本哈根学派、美国描写语言学三个学派。 2、历史比较语言学是在19世纪逐步发展和完善的,它是语言学走上独立发展道路的标志。 3、人的大脑分左右两半球,大脑的左半球控制语言活动,右半球掌管不需要语言的感性直观思维。 4、一个符号,如果没有意义,就失去了存在的必要,如果没有声音,我们就无法感知,符号也就失去了存在的物质基础。 5、用什么样的语音形式代表什么样的意义,完全是由使用这种语言的社会成员约定俗成。 6、语言符号具有任意性和线条性特点。 7、语言的底层是一套音位,上层是符号和符号的序列,可以分为若干级,第一级是语素,第二级是词,第三级是句子。 8、语言系统中的所有符号,既可以同别的符号组合,又可以被别的符号替换,符号之间的这两种关系是组合和聚合。 9、组合是指符号与符号相互之间在功能上的联系,聚合是指符号在性质上的归类。 三、判断正误(正确的打钩,错误的打叉) 1、文字是人类最重要的交际工具。(×) 2、地主阶级和农民阶级之间没有共同语言,这说明语言是有阶级性的。(×) 3、在现代社会,文字比语言更加重要。(×)

最新10月全国自考现代语言学试题及答案解析

全国2018年10月自学考试现代语言学试题 课程代码:00830 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%×10=20% ) 1. The purpose of Chomsky’s definition is to focus attention on the purely ______ properties of language, and these properties can be studied from a mathematically precise point of view. ()A. lexical B. grammatical C. semantic D. structural 2. We refer to the limited range of sounds as the phonic medium of language and individual sounds within that range as ______.() A. vowels B. consonants C. sounds D. speech sounds 3. A(n) ______ refers to the existing form to which a derivational affix can be added. () A. root B. stem C. affix D. morpheme 4. All sentences in all languages can be represented by constituent structure trees, and all have syntactic rules that determine the linear order of words and their ______ structure. ()A. linear B. hierarchical C. constituent D. syntactic 5. In semantic analysis of a sentence, a(n) ______ is a logical participant in a predication, largely identical with the nominal element in a sentence. () A. argument B. subject C. object D. predicate 6. Speaker A: Can you answer the telephone? Speaker B: I’m in the bath. Speaker B is violating the maxim of ______.() 1

英语语言学试题及答案

英语语言学试题(1) 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%×10=20%) 1、As modern linguistics aims to describe and analyze the language people actually use, and not to lay down rules for "correct" linguistic behavior, it is said to be ___. A、prescriptive B、sociolinguistic C、descriptive D、psycholinguistic 2、Of all the speech organs, the ___ is/are the most flexible. A、mouth B、lips C、tongue D、vocal cords 3、The morpheme "vision" in the common word "television" is a(n) ___. A、bound morpheme B、bound form C、inflectional morpheme D、free morpheme 4、A ___ in the embedded clause refers to the introductory word that introduces the embedded clause. A、coordinator B、particle C、preposition D、subordinator 5、"Can I borrow your bike?" _____ "You have a bike." A、is synonymous with B、is inconsistent with C、entails D、presupposes 6、The branch of linguistics that studies how context influences the way speakers interpret sentences is called ___. A、semantics B、pragmatics C、sociolinguistics D、psycholinguistics 7、Grammatical changes may be explained, in part, as analogic changes, which are ___ or generalization. A、elaboration B、simplification C、external borrowing D、internal borrowing 8、___ refers to a marginal language of few lexical items and straightforward grammatical rules, used as a medium of communication. A、Lingua franca B、Creole C、Pidgin D、Standard language 9、Psychologists, neurologists and linguists have concluded that, in addition to the motor area which is responsible for physical articulation of utterances, three areas of the left brain are vital to language, namely, ___ . A、Broca's area, Wernicke's area and the angular gyrus B、Broca's area, Wernicke's area and cerebral cortex C、Broca's area, Wernicke's area and neurons D、Broca's area, Wernicke's area and Exner's area 10、According to Krashen, ___ refers to the gradual and subconscious development of ability in the first language by using it naturally in daily communicative situations. A、learning B、competence C、performance D、acquisition II. Directions: Fill in the blank in each of the following statements with one word, the first letter of which is already given as a clue. Note that you are to fill in One word only, and you are not allowed to change the letter given. (1%×10=10%) 11、Chomsky defines "competence" as the ideal user's k_______ of the rules of his language. 12、The four sounds /p/,/b/,/m/ and /w/have one feature in common, i.e, they are all b______ . 13、M_______ is a branch of grammar which studies the internal structure of words and the rules by which words are formed. 14、A s______ is a structurally independent unit that usually comprises a number of words to form a complete statement, question or command. 15、Synonyms that are mutually substitutable under all circumstances are called c______ synonyms. 16、The illocutionary point of r_____ is to commit the speaker to something's being the case, to the truth of what has been said. 17、Words are created outright to fit some purpose. Such a method of enlarging the vocabulary is known as word c______.

浙江自考语言与文化试卷及答案解析.doc

??????????????????????精品自学考试资料推荐?????????????????? 浙江省 2018 年 4 月自学考试语言与文化试卷 课程代码: 10058 Ⅰ. Multiple choice (24%) Directions: Each of the following incomplete statements is followed by four alternatives. Read each statement and the four alternatives carefully and decide which of the four alternatives best completes the statement. 1. The relationship between language and culture is that ________.( ) A. the former determines the latter B. the latter determines the former C. the two are parallel D. the two interact 2. While “ handsome woman” and “ pretty woman ” are both acceptable, they suggest different kinds of attractiveness because of the ________ associations of these two objectives.( ) A. collocative B. affective C. connotative D. thematic 3. A young man or young woman who rejects authority, existing institutions and conventional attitudes towards morality, style of dress is called________.( ) A. hippie B. knight C. koala D. poke 4. A fortified place occupied only by army or a fortified trading post is called ________.( ) A. castle B. fort C. lynch D. terrapin 5. Pork, mutton and beef are loan words from ________. ( ) A. French B. Latin C. Indian D. English 6.English is often referred to as a ________ language because it relies heavily on conjunctions to indicate the relationship between linguistic units. ( ) A. paratactic B. branching C. hypotactic D. linear 7. Religious name “John” means ________ in Chinese. ( ) A. 上帝是神圣的 B. 约翰 1

《语言学概论》模拟试题含答案

试卷代号:1093 语言学概论(本) 模拟试题 一、举例解释下列名词(每词5分,共10分) 1. 音位变体 2.借词 二、单项选择(每小题2分。共10分) 3.下列说法只有( )是正确的。 A.语言是人类最重要的交际工具,文字也是人类最重要的交际工具 B.不同的阶级使用语言具有不同的特点,说明语言具有阶级性 C.人类多种多样的语言说明语言具有任意性特点 D.语言是一种纯自然的现象 4. 下列说法只有( )是正确的。 A.语法的组合规则是潜在的 B.语法的聚合规则是潜在的 C.语法的组合规则存在于书面语言中 D.语法的聚合规则存在于口头语言中 5.单纯词就是由一个( )构成的词。 A.词根 B.词干 C.词缀 D.词尾6.下列各种说法只有( )是正确的。 A.词义的模糊性说明词义是不可捉摸的 B.多义词使用不当会产生歧义,如“门没有锁” C.“glass”的本义是玻璃,派生义指玻璃杯,这是隐喻 D.同义词在修辞上具有对比作用,可以利用来突出对立面 7.下列说法只有( )是错误的。 A.语法的规则可以类推,但也有例外,如“wife”的复数不是“wifes” B.}昆合语又叫克里奥尔语,它可以被孩子们作为母语来学习 C.混合语只限于某社会集团使用,缺乏广泛性 D.“墨水”原指黑墨水,现指各种颜色的墨水,这种变化是词义的扩大

三、综合分析题(共40分) 8.描写下列音素的发音特点。(8分) ① [u]: ② Ea]: ③ [m]: ④ [x]: 9.分析下面词语中各个构词语素的类别,是词根、词缀还是词尾。(12分) ① going ②老乡 ⑧绿化 10.指出下列词组的结构类型。(10分) ①学生和老师 ②空气新鲜 ③热烈欢呼 ④摆放整齐 ⑤阅读报纸 11.指出下列句子中画线词语的词尾所表示的语法意义和语法范畴。(10分) He buys many books. 四、问答题(每小题10分,共40分) 12.为什么说语言是一种特殊的社会现象? 13.语言符号是一种分层装置,这种分层的核。g,是ffA?其上层由哪些要素构成? 各要素在数量上有何特点? 14.举例说明基本词汇的特点,并简要说明这些特点之间的相互影响。 15.什么是双语现象?双语现象随着社会的发展会出现怎样的结果?

自学考试《现代语言学》模拟试题及答案2017

自学考试《现代语言学》模拟试题及答案2017 2017 年自学备考正在开展中,考生们要扎扎实实地复习,一步一步地前进,以下是搜索整理的一份《现代语言学》模拟试题及答案,供参考练习,希望对大家有所帮助!想 了解更多相关信息请持续关注我们! I .Multiple Choice 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% x 10=20%) 1. The pair of words “lend”and “borrow”are ___.( ) A. gradable opposites B.relational opposites C.co-hyponyms D.synonyms 2. The discovery of Indo-European language family began with the work of the British scholar .( ) A. Jacob Grimm B.Rasmus Rask C.Franz Bopp D.Sir William Jones 3. A linguist regards the changes in language and language use as __.( ) A.unusual B.something to be feared C.abnormal D.natural 4. __produce fast and fluent speech with good intonation and pronunciation but the content of their speech ranges from mildly inappropriate to complete nonsense,often as unintelligible.( ) A.Broca's aphasic B.The linguistic deprivation C.The damage on the angular gyrus D.Wernicke's aphasic 5.Some Southern learners of English in China tend to say “night ” as “light ”.This shows: .( ) A. They cannot pronounce/n/ B. Interlangue interference because there is notthe sound /n/in their mother tongue C. The teachers do not have a good teaching method D. They do not like to pronounce nasal sounds 6. A word with several meanings is called __word.( ) A.a polysemous B.a synonymous C.an abnormal D.a multiple 7. The function of the sentence “A nice day, isn't it? ” is __.( ) https://www.360docs.net/doc/8b1467774.html,rmative B.phatic C.directive D.performative

(完整版)语言学练习题及答案

练习1 1. There is no logical connection between meaning and sounds. A dog might be a pig if only the first person or group of persons had used it for a pig. This is one of the design features of language.A. duality B. arbitrariness C. productivity D. displacement 2. Language is a system of two sets of structures, one of sounds and the other of meaning. This is . It makes people possible to talk everything within his knowledge. A. duality B. arbitrariness C. productivity D. displacement 3. ___ refers to the ability to construct and understand an indefinitely large number of sentences in one’s native language, including those that he has never heard before, but that are appropriate to the speaking situation .A. duality B. arbitrariness C. productivity D. displacement 4. __ __ refers to the fact that one can talk about things that are not present, as easily as he does things present. The dog couldn’t be bow-wowing sorrowfully for some lost love or a bone to be lost. A. duality B. arbitrariness C. productivity D. displacement 5. ______ means language is not biologically transmitted from generation to generation, but the linguistic system must be learnt anew by each speaker. A. duality B. Arbitrariness C. interchangeability D. cultural transmission 6. ______ means that any human being can be both a producer and a receiver of messages. A. duality B. Arbitrariness C. interchangeability D. cultural transmission 7. To say “How are you.” “Hi” to your friends is the ____ __of language. A. directive function B. informative function C. phatic function D. interrogative function 8. “Tell me the result when you finish.” If you want to get your hearer to do something, y ou should use the _____ of language. A. directive function B. informative function C. phatic function D. interrogative function 9. A linguist regards the changes in language and language use as __ ___. A. unnatural B. something to be feared C. natural D. abnormal 10. A linguist is interested in ___A. speech sounds only B. all sounds C. vowels only 11. Which of the following sounds is a voiceless bilabial stop? A. [t] B. [m] C. [b] D. [p 12. Which of the following sounds is a voiced affricate? A. [y] B. [t∫] C. [z] D. [dЗ] 13. Which of the following sounds is a central vowel? A. [ ? ] B. [ i ] C. [ou] D. [a: ] 14. In the following sounds , ______ is a palatal fricative ? A. [ s ] B. [∫] C. [ l ] D. [θ] 15. In the following sounds, _____ is a voiceless affricative? A. [dЗ] B. [v] C. [t∫] D. [θ] 16. In English if a word begins with a [ l ] or [ r ],then the next sound must be a __ __. A. fricative B. nasal sound C. semi-vowel D. vowel 17. Of the “words” listed below___ is not an English word A. [r∧b ] B. [ l? b ] C. [m?sta:∫] D. [lm?p] 18. ___ are produced when the obstruction created by the speech organs is total and audibly released. A. Back vowels B. Stops C. Fricatives D. Glides 19. The International Phonetic Association devised the INTERNATIONAL PHONETIC ALPHABET in _____. A. 1965 B. 1957 C. 1888 D. 1788 20. ___ is a phonological unit , and it is a unit that is of distinctive value. A. Phone B. Phoneme C. Allophone D. Sound 1. [ f ] is a dental consonant. F 2. Phonology studies the characteristics of speech sounds and provides methods for their description, classification and transcription. F 7. The three / p / are allophones. T 3. Phoneme is a phonological unit. T 4. Phone is a phonetic unit. T

相关文档
最新文档