搜档网
当前位置:搜档网 › JNUC语言样题

JNUC语言样题

JNUC语言样题
JNUC语言样题

I.True/False

1.( F)Identifiers consist of letters and digits in any order, but must be in lowercase.

2.(T)We create modular programs because they are easier to develop, correct and modify.

3.(F)All computers use twice the amount of storage for double precision than floating point data type

4.(F)Static variable is not created and destroyed each time the function is called, it is the default storage class

used by C.

5.(T)A compound statement may be used anywhere in C program in place of a single statement.

6.(F)In C language, all operators are binary operator which connecting tow operands side-by-side.

7.(T)The Escape Sequence is a combinations of a backslash (\) and a character that tells the compiles to

escape from the ways these character would be normally interpreted

8.(T)Extern storage class is to extend the scope of a global variable beyond its normal boundary-file. it does

not cause the creation of a new variable.

9.(F)After defined, the symbolic names can be used in any statement and the program can change the value

of the symbolic names.

10.(T)The mistake of u sing the assignment operator”=” in place of the relational operator”==” results in a

invalid C expression

II.Choice

11.(C)For the algebraic expression 3ae/bc, which of the following C expression is invalid

A) a/b/c*e*3 B) 3*a*e/b/c

C) 3*a*e/b*c D) a*e/c/b*3

12.(D)For the declarations: char w; int x; float y; double z; the data type of the value of w*x+z-y is

A) float B) char

C) int D) double

13.(B)For following declaration, which expression will not result in 3 ?

int x[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, *p1 ;

A) x[3] B) p1 = x +3, *p1++

C) p1 = x +2, *( p1++ ) D) p1 = x +2, *++p1

14.(A)Which one is not endless loop?

A) for (y = 0, x = 1 ; x > ++y ; x = i++ ) i = x ;

B) for ( ; ; x ++ = i ) ;

C) while (1) {x ++;}

D) for ( i =10 ; ; i--) sum += i ;

15.(B)The result of the following program is

main()

{ int a = -2, b

do

{ b = ++a;

if (!b) printf(“#”);

else printf(“*”);

}while(a<1)

}

A}#*# B} *#*

C)### D) ***

16.(D)Which one of the following functions is valid ?

A) double fun ( int x , int y )

{ z = x + y ; return z ;}

B) fun ( int x , y )

{ int z ;

return z ;}

C) fun ( x , y )

{ int x ,y ; double z ;

z = x + y ; return z ;}

D) double fun ( int x , int y )

{ double z ;

z = x + y ; return z ;}

17.(D)In a source codes file of C language, if a variable can only be used by all functions with the file itself,

the storage class of the variable is

A) extern B) register

C) auto D) static

18.(B)The C programming language the symbol “= =”is

A) rational operator B) logical operator

C) conditional operator D) assignment operator

19.(D)For the definition statement: double s = 123.5; , which one is the correct output statement?

A) printf(“s=%d ”, s); B) printf(“s=%ld ”, s);

C) printf(“s=%f ”, s); D) printf(“s=%lf ”, s);

20.( C)Which of the following expressions will result in 0?

A) 3%5 B) 3/5.0

C) 3>5 D) 3<5

III.F ill in the blanks in each program to implement the purpose according to the description Description#1:The following program can accept elements of an array from the keyboard, and find the maximum element and corresponding index in the array.

main()

{ int x[10], *p1, *p2, k;

for(k = 0; k < 10; k++) scanf("%d", x+k);

for(p1 = x, p2 = x; p1-x < 10; p1++ )

if(*p1 > * p2) p2 = 【21】 ;

printf("MAX = %d, INDEX = %d\n", *p2,【22】);

}

21.A) p1 B) p2[p1] C) x[p2] D) x – p1

22.A) p1– x B) p1 C) p2 – x D) x – p2

Description#2: For each x, the program will calculate a corresponding y according to the relationship of x and y

main()

{ int x, y;

scanf(“%d”, &x);

if(【23】 ) y = x * (x + 2);

else if(【24】 ) y = 2 * x;

else if(x <= -1) y = x - 1;

else 【25】;

if(y != -1) printf("%d", y);

else printf("error");

}

23.A) x > 2 | | x <= 10 B) x > 2 && x <= 10

C) x < 2 && x <= 10 D) x < 2 | | x >= 10

24.A) x < -1 | | x >= 2 B) x > -1 | | x <= 2

C) x > -1 && x <= 2 D) x > -1 ^ ^ x <= 2

25.A) y = -1 B) y = 0 C) x = 0 D) x = -1

IV.(1)What is the purpose of the following program?

#include

#define N 10

main()

{

int t, i, j, a[N+1] ;

printf(“please input 10 integers:”);

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

scanf(“%d”, &a[i]);

printf(“\n”);

for (i=1; i<=N-1; i++)

{ for (j=1; j<=N-i; j++)

if (a[j]

{t=a[j+1]; a[j+1]=a[j]; a[j]=t;}

}

for (i=1; i<=N; i++) printf(“%d”, a[i]);

printf(“\”n);

}

从大到小排列数字。

(2)Read the grogram and guess the result of the program

#include

int k = 1;

char a[ ] = “IBM computer”, b[ ] = “C program”;

int fuc();

main()

{ int p = 3;

while (putchar(a[k])) k++; /*k=12*/

putchar(…\n?);

printf(“k=%d, ”, k);

k=fuc(p);

printf(“%d, %d\n”, p,k);

printf(“%c%s\n”, a[0], &b[p]);

puts(&a[3]);

}

int fuc(int m)

{

int k = 0;

while (putchar(b[k])) k++;

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

k +=m; m *=k;

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

return (m+k);

}

OUTPUT:

BM computer

k=12,C program k=9

36, 12

3, 48

Irogram

computer

V.Check Error in the program according to the following description and correct them, write the whole corrected program on the answer sheet

A programmer wants to write a program to simulate a roll of the dice. The programmer decides to have the

program choose two pseudo-random numbers from 1 to 6 and output the two numbers. If two values are the same, the program should also output the string "That's a pair!" after printing the two values.

The programmer writes the following code:

#include

#include

#include

int main(void)

{ int dice[2];

srand(time(NULL));

for (x = 0; x <= 2; x++);

dice[x] = rand() % 6;

printf ("You rolled a %d and a %d.\n", dice[0], dice[1]);

if (dice[0] = dice[1])

printf("That's a pair!\n");

return 0;

}

The above code has 5 errors in it!What are they?

没有定义x

for (x = 0; x <= 2; x++);应改为for (x = 0; x <= 2; x++)

dice[x] = rand() % 6;应改为(dice[x] = rand() % 7)+1 /*超纲*/

for (x = 0; x <= 2; x++);应改为x < 2

if (dice[0] = dice[1])应改为==

VI.Writing a program

Write a complete program that allows the user to enter a string (assumed to be less than 25 characters long). If N is the length of the string, the program should output N rows to standard output. The first row should be the string entered by the user. The second row should be the string without its last character. The third row should be the string without its last two characters. Etc. The N th and final row should be only the first letter of the string.

Here is a sample run, assuming the user types “Hello World!” when prompted:

Enter a string: Hello World!

Hello World!

Hello World

Hello Worl

Hello Wor

Hello Wo

Hello W

Hello

Hello

Hell

Hel

He

H

Pretest and posttest loop;modular programs;binary operator;file;the amount of storage;continue break statement;Automatic variable;symbolic name;array name;Extern storage class;Identifiers;

Escape Sequence;control string;union;compound statement;members of a structure;

源代码:

#include

#include

#define N 25

main()

{

char a[N];

int i,j;

gets(a);

for(i=0;i

{for(j=0;j

printf("%c",a[j]);

printf("\n");}

}

语言学题库

语言学题库: Chapter 1 1. Read the following passage carefully and then state your own position concerning the use of knowing some linguistics. ( 2007, 中国人民大学研究生入学试题) One famous scholar says that language is an interesting subject to study on its own right, for the simple reason that everybody uses it every day. It is unbelievable that we know very little about something we are so familiar with. Just a few questions will arouse our interest in language. Why should we call the thing we sit on chair? Can’t we call chair table and table chair? How is ti that children don’t seem to make a big effort in learning their first language while we adults have to word very hard to learn a second language? Why can we talk about yesterday and last year while cats and dogs never seem to make noises about their past experience? Do you think we can think as clearly without language as with language? Does language determine what we think or thought determines what we say? These questions make us curious about language and linguistics can satisfy our curiosity. To seek the answer to any of these questions is a good reason for studying linguistics. I. Please disambiguate each of the following ambiguous sentences by means of tree diagrams. 1. She showed her baby pictures. 2. The old man was drinking in the open air. 3. John left directions for Tom to follow. 4. The young bachelor hit the color ball. 5. Leave the book on the shelf. 6. John saw a girl with a telescope. 7. more beautiful flowers 8. I went to the bank. (? Polysemy/ homonymy)

语言学概论试题及答案

一、填空题:(每空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. 广义地说,汉语动词词尾“着”、“了”、“过”属于语法范畴中的 ()

视听语言试题库完整

视听语言课程考试试卷A 一、名词解释 1.特写2.场面调度3.对比调度 4.人声5.声画同步6.理性蒙太奇 二、简答题 1.简要回答构图的基本原则。 2.谈谈剪辑的基本原则。 3.镜头运动的作用。 4.拍摄角度有哪些及其拍摄角度的作用。 三、论述题 1.试论述声画同步对非连贯性剪辑的影响。 2.电影的时空结构包括哪几大类,试举例分析。 视听语言课程试卷A参考答案 一、名词解释: 1.特写:特写指用以细腻表现人物或被摄物体细部特征的一个景别。有时候特写被应用于主观镜头,表现人物主观视点。 2.场面调度:本义指导演对演员在舞台上的表演活动、空间位置的安排与调度。引申到影视艺术中,场面调度获得了更丰富的可能性:它不仅关系到演员的调度,而且还涉及摄影机以及拍摄现场各部门、各元素的调度。 3.对比调度:在演员调度和镜头调度的具体处理上,可以运用各种对比形式,如动与静、快与慢的强烈对比,音响上强与弱的对比,或造型处理上明与暗、冷色与暖色、黑与白、前景与后景等等对比,则艺术效果会更加丰富多彩。 4.人声:指人在声音表达思想和喜怒哀乐等感情时所发出的各种声音。按表现方式不同,电影中的人声主要分成对话、独白和旁白三部分。 5.声画同步:也称声画合一,指影视中的声音和画面严格匹配,使发音的人或物体在银幕上与发声音保持同步进行的自然关系,使得画面中视像的发声动作和它发出的声音同时呈现、并且同时消失,两者吻合一致。 6.理性蒙太奇:爱森斯坦对杂耍蒙太奇进一步发展,提出理性电影的观念,追求电影富于激情的叙述和理性思想的传达。“理性蒙太奇理论的意义在于:理性电影是能够克服逻辑语言和形象语言之间的不协调的唯一手段。在电影辩证法的基础上,理性电影将不在是故事的电影,也不是轶闻的电影。更改电影将是概念的电影。它将是整个思想体系的直接表现。” 二、简答题 1、简要回答构图的重要原则。 ①平衡原则。根据人眼观察真实世界的的正常视觉经验,我们在构图时,需要尽量遵循平衡原则。画框内的构图,基本需要保持地平线的水平,各元素的重心基本能够位于画框中央或接近中央,各元素对比要让人感觉协调,但这也不是绝对的标准,需要依照情况而定。 ②变化原则。相对而言,人眼对不平衡的、富于变化与动态的构图更为敏感,如在一片相对静态的物体中,个别动态的物体就会首先吸引人的注意,平衡的构图中,如果重心突然发生改变,也会吸引人的注意,所以,有时候,我们利用变化原则,可以表达特定的内涵。 ③动态构图的原则。因为影像是活动的,相对于静态构图而言,动态构图在通常的点线面色光等要素之外,又加入运动这个因素。动态构图中,各元素在时刻发生变化,这与剪辑有很大的关联。 2.谈谈剪辑的基本原则。

英语语言学试题库

英语语言学 Ⅰ.Directions:Read each of the following statements carefully,Decide which of the four choices completes the statement and put the letter A,B,C or D in the brackets. 1.There are ( )main areas of phonetic study. A.2 B.3 C.4 D.5 ANSWER:B 2.The term( )linguistics may be defined as a way of referring to the approach which studies language change over various periods of time and at various historical stages. A.synchronic B.diachronic https://www.sodocs.net/doc/7415883737.html,parative D.historical comparative ANSWER:B 3.Foreign language learning always contain ( ) A language historical process learning B.input and language learning C inter language in language learning D.grammar and language learning ANSWER:BCD 4.The way in which people address each other depends on their age, sex, social group, and personal relationship. The English system of address forms frequently used includes first name, last name, title+ last name, ( )and kin term. A title+ first name B title+ title

英语语言学试题及答案

英语语言学试题(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______.

自考或考研语言学概论自考试题及答案

2008和2009自考语言学概论真题及答案一、单项选择题(本大题共20小题,每小题1分,共20分) 在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。 1.下列关于“语言”的说法,不正确的一项是() A.语言就是人们说出来的话 B.语言是一种有声符号系统 C.语言系统由多个子系统组成 D.语言是人类最重要的交际工具 2.下列属性中,风声、雨声、喷嚏声、咳嗽声均不具有的一项是() A.生理属性 B.自然属性 C.社会属性 D.物理属性 3.下列各组元音中,都属于圆唇元音的一组是() A.[i,u] B. C. D.[o,y] 4.下列词语中,不属于派生构词的一项是() A.rewrite B.cats C.teacher D.unafraid 5.下列词语中,不属于偏义复合词的一项是() A.妻子 B.国家 C.开关 D.忘记 6.下列各项中,不属于“语”的是()A.惯用语 B.歇后语 C.成语 D.术语 7.美国语言学家乔姆斯基创立的语法理论是() A.结构语法理论 B.功能语法理论 C.生成语法理论 D.认知语法理论 8.在“这道题我们做过”这个语言片段中,“这道题”和“我们做过”的性质是()A.既是成分,也是组合 B.是成分,不是组合 C.不是成分,也不是组合 D.是组合,不是成分 9.英语“John loves she”这句话是病句,其错误在于() A.性 B.格 C.数 D.态 10.下列关于义项的表述,正确的一项是() A.义项只包括词的理性意义 B.义项包括词的临时意义 C.义项是词典释义的最小单位 D.词的多个义项并非总有关联 11.下列关于语义场的表述,不正确的一项是() A.语义场是词义系统性的重要表现 B.语义场与上下位词关系密切 C.语义场是一个层级体系 D.不同语义场的系统性是均衡的 12.“行为”和“行径”在词义上最主要的差别在于() A.感情色彩不同 B.形象色彩不同 C.语体色彩不同 D.理性意义不同 13.下列文字系统中,属于自源文字的是() A.苏美尔文字 B.阿拉伯文字 C.腓尼基文字 D.拉丁文字 14.由意音文字换用表音文字,属于()A.文字的创制 B.正字法改革 C.文字类型改革 D.字符类型改革 15.下列关于“语言转用”的表述,不正确的一项是() A.语言转用是语言统一的重要形式 B.双语现象并非一定导致语言转用 C.语言转用以民族融合为必要条件 D.语言间的密切接触是语言转用的重要条件16.语汇系统中最为稳固而不易变化的是() A.一般语汇 B.基本语汇 C.通用语汇 D.专用语汇 17.感性思维(前思维)活动不包括()A.视觉和听觉 B.触觉和知觉 C.记忆和想象 D.情感和意志 18.一般儿童能跟成年人差不多一样地说话的年龄是() A.1岁左右 B.3岁左右 C.5岁左右 D.12岁左右 19.下列关于母语教学的表述中,不正确的一项是() A.母语教学主要指中小学阶段的语言教学B.母语教学的目的就是学会使用一种语言C.母语教学的任务包括提高逻辑思维能力D.母语教学也注重提高文化素质 20.对于中介语的错误类型,目前较多采用的分类是() A.系统前错误、系统错误、系统后错误B.语法错误、语汇错误、语音错误 C.可容忍的错误、部分容忍的错误、不能容忍的错误 D.目标语判断性错误、来源语干扰性错误二、多项选择题(本大题共5小题,每小题2分,共10分) 在每小题列出的五个备选项中至少有两个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选、少选或未选均无分。21.下列关于书面语的表述,正确的有() A.是经过提炼的口语书面形式 B.与口语相比缺少了一些内容 C.不存在与口语严重脱节现象 D.会具有相对独立的发展历史 E.不会影响和促进口语的发展 22.从发音机制上看,辅音的音质决定于() A.发音方法 B.发音部位 C.唇形圆展 D.舌位高低 E.舌位前后 23.“奥林匹克”这个词属于()

视听语言大一考题

一、简答题: 1、影视画面的构图特点: 画面的运动特性 画面的整体效果性 画面的时空限制性 画面的多视点、多角度 画面处理的现场性 画面的幅式比例固定性(后有示例) 2、景别的作用: 暗示、描绘电影空间及人物关系 建立影片与观众、人物间的情感距离 建构整体视觉风格和导演风格 影响画面视觉节奏 3、运动镜头的意义: ·作为电影叙事手段的运动镜头 对空间自由呈现;模仿人在观察世界的种种视线特征(带有强烈的主观性,意味着发现和强调的过程——这类镜头运动必须有叙事的目的或者视点依据及运动依据)。 ·运动镜头的美学表现 以“运动”建立结构(有关漂泊、寻找、追逐的故事,主题与运动相关的故事);通过运动调节和建立视觉节奏感等 4、影视音乐主要的表现功能是: 抒发情感,挖掘人物内心世界; 渲染场面气氛,烘托情绪; 刻画人物形象,突出主体; 提示段落,过渡转换流畅自然; 描绘自然景物,交待环境; 激发联想,引发观众时空改变; 5、声音和画面的关系: 一、声画同步 是指声音与画面按照现实的逻辑相互匹配的效果,几乎是每一部影视剧中大量存在的声画关系类型。 视听同步,听到的声源即在画面中。 强调真实感和现场性。 二、声画分离 我们的听觉在任何时候都容纳着我们周围的空间,而我们的视觉只能波及60度,甚至在我们注意力集中的时候只有30度,即使没看到,听觉也会帮助人们了解外部世界的信息。这是声画分离的心理原理。 声画分离有不同的形式:第一种是指画面内没有出现声源,如很多环境音响,不需要画面展示具体声源;第二种是指同一空间中,以声音作为铺垫,与画面内的人或物产生某种联系;第三种是指画面的景别和声音的距离感并不一致。 三、声画对位 这一说法来自音乐的对位法,在视听语言中是指声音和画面不是按照现实逻辑配合,而是意念上相呼应的关系,或是现实与心理的呼应关系,这种手法往往能表达出更深的内涵,获得意想不到的效果。 四、声画措置——声画的时空处理技巧 声音与画面独立为两个时间、两个空间,观众可以根据给出的信息建立联系。画面所表现的是在叙事时空中正在进行的动作,声音所表现的是另一时空中所发生的动作或将来可能发生的事情,或反之。 6、视听语言的作用: 叙事 抒情:体现创作者或者角色对客观世界的情绪感觉 象征:用具体的视听形象象征某种抽象的思想、观念和情感 7、构图的原则:1、位置原则。 中央——通常留给最重要的视觉形象; 顶部——可以表现权力、威望和雄心壮志; 边缘——表现受到挤压和排斥之后的渺小和无力; 下方——具有从属和脆弱的特性。 2、面积原则。 视觉重量是衡量画面内容在视觉注意力上的一种说法,它不能完全量化,在画面中人眼首先观察或者着重观察的内容视觉重量较重,反之较轻。 除了画左和画面上方重量重外,在影视作品的实际创作中,还存在下列的规律:画面内视线关注的内容视觉重量较重;占有更大面积的部分视觉重量重于小面积的内容。 8、视听作品的艺术特性: 第一重假定性——电视工作者对现实生活的剪裁; 第二重假定性——摄像(影)机、编辑机、特技机等对素材的处理加工; 第三重假定性——通过不同类型、不同传输效果的电视荧屏; 第四重假定性——具有不同身份、教养、种族、国度、地域以及各自自身的不同生理心理状况所处不同观赏环境与社会历史背景中 的观念的不同理解。 9、技巧剪辑常用方式: A、淡出淡入——一个画面逐渐暗下去,下—个画面逐渐亮起来。一般用作大的段落间隔用。 B、叠化——上下两个画面有几秒钟时间的重合,一般用来表现空间的转换和明显的时间过渡。 C、翻页——第—个画面象翻书一样翻过去,第二个画面随之显露出来。 D、划像——前一画面从一个方向退出面面,第二个画面随之出现,开始另一段落。 E、圈出圈入——这也是一种常用的段落转换技巧,第一个段落结束后,用圆圈和方框等图形把下一个画面团出来开始第二个段落。 F、定格——第一段的结尾画面作定格处理,使人产生瞬间的视觉停顿,接着出现下—个画面,这比较适合于不同主题段落间的转换。 另外还有闪白、闪黑、黑场等 10、构图的概念及意义: 一、概念 构图是指在一定的画幅格式中,为表现某一特定的内容和视觉美感效果,将镜头前被表现的对象以及摄影的各种造型元素(线条、光线、影调及色调等)有机地组织、分布在画面中,形成一定的画面形式。 二、意义 提供故事发生的场景的基本形状,同时发挥更为积极的戏剧性作用,是导演对动态场景空间的安排和组织。 11、三点布光及其作用: 1、主光源放在被摄主体前面,与被摄主体形成一定的角度; 2、在被摄主体的一侧布置副光,以部分消除主光照射下被摄主体形成的阴影; 3、布置逆光,把光源放在被摄主体后面的高处,使被摄主体的四周边缘有一个光环,使主体富有立体感。 12、角度划分及其特点: 从摄影机的位置即人的视线基点来划分,可分为三种角度:平角度(平摄)、仰角度(低角度、仰拍)、俯角度(高角度、俯拍)

语言学概论练习题库参考答案

《语言学概论》练习测试题库 一、单项选择题 1、“人有人言,兽有兽语”中的“言”属于: A. 语言。 B. 言语。 C. 言语行为。 D. 言语作品。 2、人运用语言可以说出无限多的句子,这反映了语言的:(C) 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、转换生成语言学的代表人物是: A. 乔姆斯基。 B. 菲尔默。 C. 皮亚杰。 D. 韩礼德。 11、下列说法正确的是 A.语言是无限的,言语是有限的。 B.语言是个人的,言语是社会的。 C.语言是一般的,言语是个别的。 D.语言是具体的,言语是抽象的。 12、人类最重要的交际工具是 A.文字。 B.语言。 C.书面语。 D.手势语。 13、下列说法正确的是 A.所有的符号都有任意性。 B.有些符号有任意性。 C.只有语言符号有任意性。 D.语言符号没有任意性。 14、词汇变化比语音语法快,这体现了语言发展的 A.渐变性。 B.稳固性。 C.相关性。 D.不平衡性。 15、“小王喜欢小李”中“喜欢”和“小李” A.是组合关系。 B.是聚合关系。 C.既是聚合关系又是组合关系。 D.既非聚合关系又非组合关系。 16、语言最重要的功能是 A.思维功能。 B.标志功能。 C.交际功能。 D.认知功能。 17、日语属于 A.屈折语。 B.粘着语。 C.词根语。 D.编插语。

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

练习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

考研语言学概论-7.doc

考研语言学概论-7 (总分:100.00,做题时间:90分钟) 一、判断题(总题数:10,分数:10.00) 1.语言中任何一个较为复杂的词组或句子,在其生成过程中都可能重复使用过一条或几条结构规则。(分数:1.00) A.正确 B.错误 2.英语“books”中的“s”是词尾。 (分数:1.00) A.正确 B.错误 3.“日子”中的“子”是词根语素。 (分数:1.00) A.正确 B.错误 4.“好极了”、“为了明天”属于内向结构。 (分数:1.00) A.正确 B.错误 5.英语“He reads a letter.”中reads中的s表示的语法意义是数、时和人称。 (分数:1.00) A.正确 B.错误 6.派生构词法在汉语中占有很重要的地位。 (分数:1.00) A.正确 B.错误 7.汉语中的单音词、联绵词以及音译词都是单纯词。 (分数:1.00) A.正确 B.错误 8.词类划分的重要标准有两个:一是句法标准,二是意义标准。 (分数:1.00) A.正确 B.错误 9.一切语言都有开放性词类,而大多数语言也有一些封闭性词类。 (分数:1.00) A.正确 B.错误 10.变换有助于辨析句法意义之间的细微差别。 (分数:1.00) A.正确 B.错误 二、简答题(总题数:28,分数:90.00) 11.什么是语法?语法的主要性质特征是什么? (分数:4.00)

__________________________________________________________________________________________ 12.语法规则是由哪两种规则构成的?它们之间的关系怎样? (分数:4.00) __________________________________________________________________________________________ 13.词法和句法有何联系与区别? (分数:4.00) __________________________________________________________________________________________ 14.形位/语素与词位/词有何区别? (分数:4.00) __________________________________________________________________________________________ 15.词位/词和词组的区别是什么? (分数:4.00) __________________________________________________________________________________________ 16.词组和句子有哪些差别? (分数:4.00) __________________________________________________________________________________________ 17.什么是词根形位?什么是附加形位?后缀与词尾有什么区别? (分数:3.00) __________________________________________________________________________________________ 18.构词法和构形法有什么区别? (分数:3.00) __________________________________________________________________________________________ 19.常见的语法手段有哪些? (分数:3.00) __________________________________________________________________________________________ 20.根据词的形态特点(语法形式),可把语言大致分成几类? (分数:3.00) __________________________________________________________________________________________ 21.举例说明什么是语法范畴。 (分数:3.00) __________________________________________________________________________________________ 22.语法范畴中的“性”的概念有什么特殊性? (分数:3.00) __________________________________________________________________________________________ 23.每一种语法范畴具有哪些共同特点? (分数:3.00) __________________________________________________________________________________________ 24.词类划分的主要标准是什么? (分数:3.00) __________________________________________________________________________________________ 25.划分词类对句法描写的意义和作用是什么? (分数:3.00) __________________________________________________________________________________________ 26.什么叫形态?为什么说形态可以作为划分词类的标准之一? (分数:3.00) __________________________________________________________________________________________ 27.形态变化有哪些主要形式? (分数:3.00) __________________________________________________________________________________________

相关主题