当前位置:文档之家› 大学大一C语言程序设计期末考试试卷

大学大一C语言程序设计期末考试试卷

大学大一C语言程序设计期末考试试卷
大学大一C语言程序设计期末考试试卷

四川师范大学计算机科学学院 2012~2013学年度第二学期期末考试

C 语言程序设计试卷 试卷A

答卷说明: 1、

本试卷共6页,答题纸3页,4个大题,35个小题,满分100

分,120分钟完卷。 2、

闭卷考试,所有的答案都必须写在答题纸上,判卷以答题纸上

答案为准。 3、 本试卷适用于2011级1、2、3班。

一、 单项选择题(在每小题的四个备选答案中,选出一个正确答案,并将正确答案的

序号填在题干的括号内。每小题1分,共20分) 1、 在C 语言中,下列标识符中合法的是( )

A). -int B). in1_3 C). A_B!D D). const

2、 不属于C 语言基本数据类型的是( )

A). int B). union C). char D). unsigned

3、 下面是对宏定义的描述。不正确的是( )

A). 宏不存在类型问题,宏名无类型,它的参数也无类型 B). 宏替换不占用运行时间

C). 宏替换只是字符串的简单替代

D). 宏替换时先检查类型,类型一致时才可以替换

4、 C 语言中,″\\xfds ″在内存中占用的字节数是( )

__________________学院__________级___________班 姓名_______________ 学号_______________

………………………………(密)………………………………(封)………………………………(线)………………………………

密 封 线 内 答 题 无 效

A).3 B).4C).5D).6

5、设int x;则执行printf(″%x\n″,~x^x);的结果是()

A). ffffffff B). ff C).0D). 1

6、对于while语句,错误的说法是()

A).用条件控制循环体的执行次数B).循环体至少要执行一次

C).循环体有可能一次也不执行D).循环体中可以包含若干条语句

7、执行下列语句后输出的结果是()

int a=8,b=7,c=6;

if(ac){a=c;c=b;}

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

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

8、设int a=9,b=20;则printf(″%d,%d\n″,a--,--b);的输出结果是()

A).9,19B).9,20C).10,19D).10,20

9、设static char x[ ]=″12345″,y[ ]={′1′,′2′,′3′,′4′,′5′,′\0′};那么()

A).x数组的长度等于y数组的长度B).x数组的长度大于y数组的长度

C).x数组的长度少于y数组的长度D).x数组与y数组的存储区域相同

10、设int i,x[3][3]={1,2,3,4,5,6,7,8,9};则下面语句的输出结果是()

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

printf(″%d″,x[i][2-i]);

A).147B).159C).357D).369

11、执行完下列语句后,n的值是()

int n;

for (n=0 ; n<100 ; n=2*n+1);

A).125B).126 C).127D).128

12、有以下语句:int a=6;a+=a-=a*a;printf(“%d”,a);输出结果()

A).–132 B).–60 C). -24 D). 0

13、为了连接两个字符串s1与s2,应当使用()

A). strcat( s1,s2 ) B). strcpy( s1, s2 ) C). strlen( s1, s2 ) D). strcmp( s1, s2 )

14、设int a,*p;则语句p=&a;中的运算符“&”的含义是()

A).位与运算B).逻辑与运算C).取指针内容D).取变量地址

15、下面输出的结果为()

i nt a=13, b=64;

printf(“%d\n”, !a || (b>>3) );

A).13 B).64 C).1 D).0

16、 下列定义正确的是( )

A).enum t={a,b}x; B). enum t{1,2}x; C). enum {′+′,′-′}x; D). enum t{a,b}x;

17、 设有定义:struct u{int a[4];float b[3]; char c[16];}aa;

则printf(″%d\n ″,sizeof(aa));的输出是( ) A).32 B).36 C).12 D).8

18、 数据-54.78在文本文件中占用的字节个数是( )

A).4 B).5 C).6 D).8

19、 在宏定义#define p(r) 3.14*r 中,请问宏名是( )

A). p B). p(r) C). 3.14*r D). p(r) 3.14*r 20、 要打开一个已存在的用于修改的非空二进制文件“hello.txt ”,正确语句是( )

A). fp=fopen( "hello.txt ","r" ) B). fp=fopen( "hello.txt ","ab+" ) C). fp=fopen( "hello.txt ","w" ) D). fp=fopen( "hello.txt ","r+" )

二、填空题(仔细阅读每小题的说明和源代码,并将正确答案写到答题纸上对应的题号处。每小题4分,共36分)

1. 以下程序的功能是:从键盘上输入若干个学生的成绩, 统计并输出最高成绩和最低成绩,当输入负数时结束输入.请填空.

21:

22:

__________________学院__________级___________班 姓名_______________ 学号_______________

………………………………(密)………………………………(封)………………………………(线)………………………………

密 封 线 内 答 题 无 效

2. 下面程序的功能是比较字符数组a和字符数组b中的两个字符串是否相等(比较对应字符,全部相同输出0,如果不同,返回第一个不相同的字符差值,并输出)。

24:

4.以下程序对一个3×3的矩阵进行行列互

27:

28:

29:

(本大题共4小题,每小

四、程序设计题,将源代码规范地书写在答题纸上(第34小题10分,第35小题各14分,共24分)。

34.设计函数实现将一个字符串中小写字母转化为大写字母。

35.计算!

1

!21!111n e 的值并输出(设n=20)。

四川师范大学计算机科学学院

2012~2013学年度第二学期期末考试

C 语言程序设计试卷 试卷A

参考答案与评分标准

一、单项选择题:(每小题1分,共20分)

二、填空题:(每空4分,共36分)

21: x >= 0 22: x < amin

23: int i=0 24: (a[i] == b[i]) && a[i] != '\0' 25: ‘\0’ 26: *sptr++ 27: j < i 28: a[i][j] = a[j][i] 29: a[j][i] = temp

三、阅读程序题:(每小题5分,共20分)

30: 7 9 31: I am a qjh. 32:100,400,100,200 33:Gcd=12

四、程序设计题:(第34小题10分,第35小题各14分,共24分)

34.设计函数实现将一个字符串中小写字母转化为大写字母。(10分)

#include (1分) #include (1分)

/* 转换函数4分,其中:循环正确1分,判断、转换正确各1分,其余1分 */ void Convert(char * str) { while (*str != '\0') { if(islower(*str )) *str = toupper(*str); str++; } }

/* 主函数4分,其中:变量定义初始化正确1分,函数调用正确2分,输出正确1分*/ void main( ) { char str[] = "123123asadAsadMNer"; Convert(str); printf("%s\n",str); }

其它答案可根据情况酌情给分。

35计算!

1

!211!111n e

的值并输出(设n=20)。

(14分) #include (1分)

/* 递归函数5分 */

long factorial(int n) (1分) { if (n == 1) return n; (2分) else return n * factorial(n-1); (2分) }

/* 主函数8分,其中:变量定义正确2分,循环正确得2分,函数调用格式正确2分,输出正确2分*/ void main( ) { double e = 1.0; for (int i=1; i<=20; i++) { e += 1/(double)factorial(i); }

printf("%lf\n",e);

}

其它答案可根据情况酌情给分。

江苏大学大一c语言期末复习题汇总

选择题1.下列字符序列中,不可用作C语言标识符的是()。 A.abc123 B.C._123_ D._ok 2.请选出可用作C语言用户标识符的一组标识符()。 A.void B.a3_b3 C.For D.2a define _123 -abc DO WORD IF Case sizeof 3.不属于C语言关键字的是()。 A.int B.break C.while D.character 4.以下不能定义为用户标示符的是()。 A.scanf B.Void C._3com_ D.int 5.C语言程序的基本单位是()。 A.程序行B.语句C.函数D.字符 6.以下说法中正确的是()。 A.C语言程序总是从第一个定义的函数开始执行 B.在C语言程序中,要调用的函数必须在main( )函数中定义 C.C语言程序总是从main( )函数开始执行 D.C语言程序中的main( )函数必须放在程序的开始部分 7.以下选项中,合法的用户标识符是()。 A.long B._2abc C.3dmax D. 8.已知大写字母A的ASCII码值是65,小写字母a的ASCII码是97,则用八进制表示 的字符常量’\101’是()。 A.字符A B.字符a C.字符c D.非法的常量 9.以下选项中,正确的字符常量是()。 A.”F”B.’\\’’C.’W’D.’’ 10.下列变量定义中合法的是 A.short _a=; B.double b=1+; C.long do=0xfdaL; D.float 2_and=1-e-3; 11.为了避免嵌套的if-else语句的二义性,C语言规定else总是与()组成配对关系。 A.缩排位置相同的if B.在其之前未配对的if C.在其之前未配对的最近的if D.同一行上的if 12.下列运算符中优先级最高的是()。 A.< B.&& C.+ D.!= 13.判断char型变量s是否为小写字母的正确表达式是()。 A.’a’ <= s<=’z’B.(s>=’a’) & (s<=’z’) C.(s>=’a’) && (s<=’z’) D.(’a’<=s) and (’z’>=s)

浙江大学城市学院大学语文期末试卷

A. C. D.

5.请问十二地支中“巳”对应的是十二生肖中的哪一种动物? A.龙 B.蛇 C.马 D.羊 6. 带点字注音正确的是__________。 A. 溯洄从之,道阻且跻.(j ī)。溯游从之,宛在水中坻.(ch í)。 B. 尺蠖(q ú)之屈,以求伸也;龙蛇之蛰(zh é),以存身也。 C. 冬雷震震夏雨雪(雨yǔ,下雨) D. 癸(ku í)戌(x ū)年出生的小孩,生肖属狗。 7. “天地不仁,以万物为刍狗;圣人不仁,以百姓为刍狗。” 这句话反映了__________。 A. 佛教思想 B. 儒家思想 C. 道家思想 D. 墨家思想 E. 法家思想 8. 李耳、南华真人、亚圣分别指的是 A.老子 庄子 孟子 B.鬼谷子 老子 曾子 C. 老子 庄子 荀子 D.老子 鬼谷子 孟子 9. 以下选项中不是同一个爱情故事中男女主角的是 A.卡西莫多和艾丝美拉达 B.哈姆雷特和奥菲利亚 C.张生和杜丽娘 D.阿波罗和达芙妮 10. 请问一天中的“申时” 指的是什么时间? A.下午1点-3点 B.下午3点-5点 C.下午5点-7点 D.晚上7点-9点 11. 今年是2012壬辰年,请问2013年用干支表示是什么年? A.壬卯 B.辛卯 C.壬巳 D.癸巳 12. 传说八卦的创制者是 , 将其演为六十四卦。 A.伏羲 姬昌 B.大禹 姬旦 C.伏羲 孔子 D.大禹 孔子 13. 以下卦象是六十四卦中的既济卦,请说出这个卦象的下卦和下卦的卦象分别是 ,它们代表的自然界 的事物分别是 A.上卦是坎,代表水。下卦是离,代表火。 B. 上卦是离,代表水。下卦是坎,代表火。 C. 上卦是坎,代表火。下卦是离,代表水。 D. 上卦是离,代表火。下卦是坎,代表水。 14. 金庸在其小说《射雕英雄传》中创造了一种名为“降龙十八掌”的绝妙武功,以下为降龙十八掌的前五招为:第一式 亢龙有悔 ,第二式 飞龙在天,第三式 见龙在田,第四式 鸿渐于陆 ,第五式 潜龙勿用。其中 的招式来自于《周易乾》“九五”爻辞一些招式,请选出来自于“乾卦”的招式。 A.第一式 亢龙有悔 B.第二式 飞龙在天 C.第三式 见龙在田 D.第四式 鸿渐于陆 E.第五式 潜龙勿用 15. 下列关于诸子说法正确的是 A .战国时法家代表人物是韩非、李斯,他们都是孟子的弟子。 B. 孔子在家排行老三,因为他字仲尼。仲是排行老三的意思。 C. 战国时期与儒家并称为显学的是墨家。墨家是一个有着严密组织和严密纪律的团体,最高领 袖被称为“巨子”。 D.荀子提出性善论,他是先秦法家的代表人物。 16. 以下关于五行相生相克的说法正确的是 A. 火生金, 金生水。土克水,水克火。 B. 金生土, 土生木。水克火, 火克金。 C. 火生土, 土生木。土克水,水克火。 D. 金生水, 水生木。水克火, 火克金。

大一英语期末考试试题精选

大一英语期末考试试题精选 又到一个学期的期末了,大家复习好大学英语了吗?为大家精心挑选了一份大学英语第一学期期末试卷,供大家复习使用,希望能够帮助到大家! 大学一年级英语试卷 Part II Reading Comprehension (30 %) Directions: There are four passages in this part. Each passage is followed by some questions or unfinished statements. For each of them there are four choices marked A), B), C) and D). You should decide on the best choice and mark the corresponding letter on the Answer Sheetwith a single line through the center. Passage One Science is not a set of unquestionable results but a way of understanding the world around us. Its real work is slow. The scientific method , as many of us learned in school, is a gradual process that begins with a purpose or problem or question to be answered. It includes a list of materials, a procedure to follow, a set of observations to make and, finally, conclusions to reach. In medicine, when a new drug is proposed that might cure or control a disease, it is first tested on a large random group of people, and their reactions are then compared with those of another random group not given the drug. All reactions in both groups are carefully recorded and compared, and the drug is evaluated. All of this takes time and patience. It’s the result of course, that makes the best news—not the years of quiet work that characterize the bulk of scientific inquiry. After an experiment is concluded or an observation is made, the result continues to be examined critically. When it is submitted for publication, it goes to a group of the scientist’s colleagues, w ho review the work. Einstein was right when he said: “No amount of experimentation can ever prove me right, a single experiment can at any time prove me wrong.”

C语言程序设计试题及答案

C语言程序设计 一、选择题(共40分,每小题2分) 1、以下叙述不正确的是(D) A、一个C源程序可由一个或多个函数组成 B、一个C源程序必须包含一个main函数 C、C程序的基本组成单位是函数 D、在C程序中,注释说明只能位于一条语句的后面 2、下列四个选项中,是不合法的用户标识符的选项是(B) A、abc B、12AC C、sun D、A 3、设有语句inta=4;则执行了语句a+=a-=a*a后,变量a的值是(A) A、-24 B、0 C、4 D、16 4、下列运算符中优先级最高的是(B) A、< B、+ C、&& D、== 5、在C语言中,运算对象必须是整型数的运算符是(A) A、% B、/ C、%和/ D、+ 6、以下关于运算符的优先顺序的描述正确的是(C) A、关系运算符<算术运算符<赋值运算符<逻辑与运算符 B、逻辑与运算符<关系运算符<算术运算符<赋值运算符 C、赋值运算符<逻辑与运算符<关系运算符<算术运算符 D、算术运算符<关系运算符<赋值运算符<逻辑与运算符 7、在C语言中,如果下面的变量都是int类型,则输出的结果是(C) sum=pad=5;pAd=sum++,pAd++,++pAd; printf(“%d\n”,pad); A、7 B、6 C、5 D、4 8、x、y、z被定义为int型变量,若从键盘给x、y、z输入数据,正确的输入语句是(B)

A、INPUTx、y、z; B、scanf(“%d%d%d”,&x,&y,&z); C、scanf(“%d%d%d”,x,y,z); D、read(“%d%d%d”,&x,&y,&z); 9、假定从键盘输入23456<回车>,下面程序的输出结果是:(C)voidmain() {intm,n; scanf(“%2d%3d”,&m,&n); printf(“m=%dn=%d\n”,m,n); } A、m=23n=45 B、m=234n=56 C、m=23n=456 D、语句有错误 10、若运行时,给变量x输入12,则以下程序的运行结果是(A)main() {intx,y; scanf(“%d”,&x); y=x>12?x+10:x-12; printf(“%d\n”,y); } A、0B、22C、12D、10 11、C语言中while和do-while循环的主要区别(A) A、do-while的循环体至少执行一次 B、while的循环控制条件比do-while的循环控制条件严格 C、do-while允许从外部转到循环体内 D、do-while的循环体不能是复合语句 12、以下对二维数组的正确说明的语句是(C) A、inta[3][] B、floata(3,4) C、doublea[3][4] D、floata(3)(4) 13、以下程序的输出结果是(C) main()

大一第二学期英语期末试卷

each

C) He will go when he feels better. D) He won’t go as he hasn’t finished his work. 4. A) Check the timetable.B) Go to the railway station earlier. C) Travel on a later train.D) Cancel the trip earlier. 5. A) In New York.B) In Boston. C) In Newport.D) In Washington. 6. A) A clerk at the airport information desk. B) A clerk at the railway station information desk. C) A policeman. D) A taxi-driver. 7. A) A guest and a receptionist. B) A passenger and an air hostess. C) A customer and a shop assistant. D) A guest and a waitress. 8. A) He’s better.B) He’s feeling worse. C) He’s sick in bed.D) He has recovered. 9. A) The man didn’t want the woman to have her hair cut. B) The woman followed the man’s advice. C) The woman is wearing long hair now. D) The man didn’t care if the woman had her hair cut or not.

C++语言程序设计试题试题和答案

C 语言程序设计试卷 ,C++语言程序设计试题及答案 一、单项选择题(每题1分,共20分) 1. C语言规定:在一个源程序中,main函数的位置( C )。 A. 必须在最开始 B. 必须在系统调用的库函数的后面 C. 可以任意 D. 必须在最后 2. 下面四个选项中,均是合法浮点数的选项是( B )。 A. +1e+1 5e-9.4 03e2 B. -.60 12e-4 -8e5 C. 123e 1.2e-.4 +2e-1 D. -e3 .8e-4 5.e-0 3. 若a=-14,b=3,则条件表达式 a

大学语文参考试卷及答案

2010——2011学年第一学期期末考试 《大学语文》试卷(A) 一、选择题(每题分,共10分) 1. 白鹿洞因唐代的(c)在此读书,养一白鹿自娱,又因此地四山环合俯视似洞而得名。 A.李白B.白居易C.李渤D.王勃 2.清代大学者王夫之评价《采薇》中的( b )四句是“以乐景写哀景,以哀景写乐景,一倍增其哀乐。” A.驾彼四牡,四牡骙骙。君子所依,小人所腓。 B.昔我往矣,杨柳依依。今我来思,雨雪霏霏。 C.戎车既驾,四牡业业。岂敢定居一月三捷。 D.王事靡盬,不遑启处。忧心孔疚,我行不来! 3.《髻》这篇散文中“母亲”的人生悲剧是由于( d )所造成的。 A.母亲自己的性格B.姨娘的生活方式 C.父亲的生活方式D.畸形的家庭婚姻制度 4.项羽最后在乌江自刎,留给后世以无限的感慨。宋代着名词人( c )以一首《夏日绝句》,对这位大英雄表达了无限的钦佩。 A.苏轼B.辛弃疾 C.李清照D.文天祥 5.“只有一个人爱乐那朝圣者的灵魂。”(叶芝《当你老了》)中的“朝圣者”意谓( d )。 A.伊斯兰教朝圣者B.基督教朝圣者 C.佛教朝圣者D.献身爱尔兰独立事业者 6.王国维在《人间词话》中提到“三境界”说,其中第三种境界是“众里寻他千百度,蓦然回首,那人却在、灯火阑珊处。”这句话本出自(c)。 A.晏殊的《蝶恋花》B.欧阳修的《蝶恋花》

C.辛弃疾的《青玉案》D.冯延巳的《踏鹊枝》 7.《老子》又名《道德经》,是( d )的经典着作,但学术界对此书的真实性多有歧见。 A.儒家B.墨家C.法家D.道家 8.(多选)陈寅恪在《清华大学王观堂先生纪念碑铭》中认为:“士”在人格追求上的最佳境界应为(ab )。 A.精神独立B.思想自由 C.着述丰瞻D.学术宏富 9.(多选)《哈姆莱特》中新国王克劳狄斯的形象表现为(acd )。 A.阴险狡诈B. 愚昧麻木 C.伪善D.狠毒 10.(多选)陶渊明《饮酒》(其五)以“心远”总领全文,分三层揭示“心远”的内涵,这三层意蕴即是(bcd),层层递进。 A.忘物B.忘我C.忘世D.忘言 二、观点陈述(共20分) 古代诗学里有这样一个重要的命题:“诗品即人品”。也就是说,人品的高下、雅俗决定了诗品的高下和雅俗,反过来,我们也可以从诗里去认识一个人人品的高下和雅俗。因为中国真正伟大的诗人,正是用自己的全部生命去写诗,也用自己的整个一生去实践他的诗。唐代的杜甫算一个。魏晋南北朝时期,陶渊明无疑也是这样一个伟大的诗人。正如清代沈德潜说过的:“有第一等襟怀,第一等学识,其才有第一等真诗。” 你同意“诗品即人品”说吗请结合陶渊明及其他诗人的例子谈谈你的观点。理由要充分,有说服力,不少于200字。 三、课文分析(每题分,共20分) 1.简析《髻》是如何层层递进抒发情感的

大一英语上学期期末考试试卷

2010级大学英语第一学期期末考试(A卷) Jan., 2011 Part II Reading Comprehension (30 %) Directions: There are four passages in this part. Each passage is followed by some questions or unfinished statements. For each of them there are four choices marked A), B), C) and D). You should decide on the best choice and mark the corresponding letter on the Answer Sheet with a single line through the center. Passage One Science is not a set of unquestionable results but a way of understanding the world around us. Its real work is slow. The scientific method , as many of us learned in school, is a gradual process that begins with a purpose or problem or question to be answered. It includes a list of materials, a procedure to follow, a set of observations to make and, finally, conclusions to reach. In medicine, when a new drug is proposed that might cure or control a disease, it is first tested on a large random group of people, and their reactions are then compared with those of another random group not given the drug. All reactions in both groups are carefully recorded and compared, and the drug is evaluated. All of this takes time and patience. It’s the result of course, that makes the best news—not the years of quiet work that characterize the bulk of scientific inquiry. After an experiment is concluded or an observation is made, the result continues to be examined critically. When it is submitted for publication, it goes to a group of the scientist’s colleagues, who review the work. Einstein was right when he said: “No amount of experimentation can ever prove me right, a single experiment can at any time prove me wrong.” In August 1996, NASA announced the discovery in Antarctica of a meteorite(流星) from Mars that might contain evidence of ancient life on another world. As President Clinton said that day, the possibility that life existed on Mars billions of years ago was potentially one of the great discoveries of our time. After the excitement wore down and initial papers were published, other researchers began looking at samples from the same meteorite. Some concluded that the “evidence of life”was mostly contamination from Antarctic ice or that there was nothing organic at all in the rock. Was this a failure of science, as some news reports trumpeted? No! It was a good example of the scientific method working the way it is supposed to. Scientists spend years on research, announce their findings, and these findings

大学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

大学语文期末试卷

大学语文期末模拟试题 一、单项选择题(10小题,每小题2分,共20分) 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、“六军不发无奈何,宛转娥眉马前死。”中采用的是()修辞手法 A.借代B.对比C.夸张D.衬托 二、填空(10个空,每空1分,共10分) 1、盛唐时期是诗歌繁荣的顶峰,这个时期有被誉为“诗仙”的﹍﹍﹍﹍、被誉为“诗圣”的﹍﹍﹍﹍、还有“诗佛”﹍﹍﹍﹍、“诗鬼”﹍﹍﹍﹍等,他们共同为盛唐诗坛增添了无限光彩。 2、采莲南塘秋,------------------------。 3、《诗经》是我国最早的一部诗歌总集,按音乐性质分为﹍﹍﹍﹍、 ﹍﹍﹍﹍、﹍﹍﹍﹍,是我国现实主义诗歌的光辉起点。

4、张若虚与贺知章、包融、张旭并称﹍﹍﹍﹍。 三、词语解释题(本大题共10小题,每小题1分,共10分) 1.不违农时,谷不可胜食也 胜: 2.吾小人辍飧饔以劳吏者 劳: 3.户内洒然 洒然: 4.跻入人丛 跻: 5.吾长见笑于大方之家 大方之家: 6.祸患常积于忽微 忽微: 7.居有顷,复弹其铗 居有顷: 8.苏子愀然,正襟危坐而问客曰。 正襟危坐: 9.是处红衰翠减,苒苒物华休 苒苒: 10.夏天是冗长的蝉歌 冗长: 四、简答(2小题,每小题5分,共10分) 1、阅读《湘夫人》中的一节,回答问题: 捐余袂兮江中,遗余褋兮醴浦;搴汀洲兮杜若,将以遗兮远者。时不可兮骤得,聊逍遥兮容与! A.“捐余袂兮江中,遗余褋兮醴浦”运用了什么抒情方法? B.“将以遗兮远者”中的“远者”指的是谁? C.这里表现出湘君怎样的心情? 2、阅读《长恨歌》中的一节,回答问题:

大一英语期末期末考试试题内含答案[1]

大学英语预备阶段练习(一) (Unit 1~4) ⅠWord Building Directions: Fill in the blanks with the correct form of the words given in the brackets. 1.Thank you very much for your ____ advice. I followed it and succeeded at last. (value) 2.His business has ____ rapidly since his brother came to help. (development) 3.After a two-day discussion, we finally found a ____ to the difficult problem. (solve) 4.Prices ____ high for quite a while .People began to complain about it. (remaining) 5.I don’t think it ____ to finish all the work today. We can go on with it tomorrow.(necessity) 6.It is obviously not ____ to leave a 3-year-old boy alone at home. (properly) 7.The tourists saw a beautiful ____ when they climbed onto the top of the mountain.(scene) 8.Traveling in the desert is a challenging ____ to most people. ( inexperience) 9.____, I don’t think it possible to finish the task in two days. (person) 10.The government must make sure that the economy is developed in the right ____.(direct) ⅡVocabulary and Structure Directions: Choose the best one from the four choices to complete the sentence. 11.The temperature ____ throughout the day in that part of the country. A. very B. remains C. differs D. varies 12.The game is full of violence and will certainly have a bad ____ on young players. A. meaning B. pain C. loss D. influence 13.The warm-hearted elderly lady downstairs is always ____ to help others. A. real B. ready C. practical D. polite 14.The question is ____ difficult in the exam today. Don’t you think so? A. therefore B. since C. rather D. otherwise 15.She used to live in a lovely ____ building near the sea. A. 3-story B. 3-stories C. 3-classed D. 3-classes 16.There are different ____ of transport in big cities for you to choose when you go out. A. means B. mean C. meanings D. meaning 17.They did not take a rest until the job was ____ finished. A. straightly B. specially C. completely D. fairly 18.The bookstore owner ____ the old magazines with a new ones to attract more readers. A. required B. reviewed C. repeated D. replaced 19.Would you like to buy the book? It is ____ reading. A. worthy B. firm C. further D. worth 20.She wears sunglasses to ____ her eyes from the sunshine in summer. A. prepare B. produce C. protect D. provide 21.We all like her very much for her pleasant ____: kind, gentle and warm-hearted. A. character B. chance C. chairman D. skills 22.All the students enjoyed the wonderful ____ by the professor that afternoon. A. discussion B. lecture C. advice D. solution 23.If you have confidence in yourself first, you will not be _______ by others easily. A.won B. doubled C. defeated. D. delayed 24.The little girl developed a strong _______ on her new friends.

语言程序设计》试题四及答案

《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分,共8分。) 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、平叙 二、多项选择题(在每小题五个备选答案中选出二至五个正确答案,并将正确答案的序号填人题中的括号内,错选、多选、漏选均不得分。每小题1分,共6分。) 1、下列诗作属于七言律诗的是()。 A、王维《山居秋瞑》 B、李白《送盂浩然之广陵) C、王昌龄〈从军行》 D、社甫《登高》 E、李商隐《无题(相见时难别亦难)》 2、下列作品集属于朱自清创作的有()。 A、《踪迹》 B、《风景谈》 C、《背影》 D、《欧游杂记》 E、《闲书》 3、巴金在《爱尔克的灯光》中指出长辈对子女的关怀应体现在 ()。 A、给他们一个生活技能 B、向他们指示一条生活道路 C、让他们睁起眼睛去看广大世界 D、让他们走一条既走的生活道路 E、培养他们崇高的理想和善良的气质 4、屠格涅夫《门槛》通过一组象征性形象,()。 A、反映俄罗斯人民为争取民主自由而英勇斗争的情景 B、赞颂革命者的献身精神 C、揭露专制社会对革命者的迫害 D、表现了对“圣人”的崇拜 E、斥责诬蔑革命事业的庸人和帮凶 5、构成完整的小说世界的要素有()。 A、人物 B、时间 C、地点 D、情节 E、环境 6、培根在《论学问》中指出,治学的目的是()。 A、幽居养静 B、权衡轻重 C、善于辞令 D、变化气质 E、审察事理 三、填空题(每小题1分,共4分)

大学英语精读1-期末考试卷及参考答案

大学英语专业精读1 期末考试卷 I. Word formation (40%) A. Give the corresponding nouns for the following verbs.给出下列动词的相应名词形式。(10%) 1. discover 2.depend 3.amaze 4.add 5.display 6.renew 7.suppose 8.treat 9.addict 10.accelerate B. Give the corresponding nouns for the following adjectives. (10%) 1.weak 2. angry 3. free 4. quick 5. clear 6. long 7.wide 8. sad 9.happy 10. moderate C. Give the corresponding verbs for the following nouns. (10%) 1. gardening 2. failure 3. fertilizer 4. enduring 5. mixture 6.liberation 7.alternative 8.result 9.satisfaction 10.requirement D. Give the corresponding synonyms for the following words and expressions. (10%) 1.barely 2. chilly 3. now and then 4. many 5. clever 6. turn up 7. keen 8. club 9.handsome 10.sensible II. Translate the Chinese into English. (30%) 1. We’ll stick by you___________________________________________(无论发生什么事). 2. Keep in touch with your cultural roots, ___________________(无论你在世界何地). 3.We’ll bring the hostage home,___________________________(无论有多困难). 4. I feel that you young people should understand____________________(生活中总是充满着机遇和挑战). 5. When she learned____________________(她已经被那所大学录取), she almost jumped for joy. 6.You must admit_________________________(所有这一切都表明我们的努力没有白费). 7.He was running a great risk when he insisted_________________________________(地球是绕着太阳转的). 8. The visitors were greatly impressed by________________________(这个村子过去30年所取得的成就). 9. First-year college students are generally not clear about______________________________(他们应该从大学获取什么). 10._____________________________(农民最想得到的东西)is just one thing. It is land. III. Translate the following sentences into English. (30%) 1. 我们现在缺少人手,你来得正好。 2. 已经有好几个同学在考虑竞选学生会主席。 3. 她警告我不要和那种追求个人名利的人交往。 4.多年来我们学校培养了很多学生,大多数都在各个部门重要岗位任职。 5. 她原以为哲学是非常枯燥的东西,可后来方发现它非常有意思。 6.他父亲刚过五十,可头发已经灰白了。不过,除此以外,他没事。 7.这里的老师和学生都认为学英语没有什么捷径。 8.我知道放弃这个机会十分愚蠢,但我别无选择。 9.有一天,那座新楼突然倒塌,楼里很多人都被埋了。 10.一种长久的友好关系要求双方都十分真诚。

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