山东大学网络教育学院C语言程序设计模拟题C答案

山东大学网络教育学院C语言程序设计模拟题C答案
山东大学网络教育学院C语言程序设计模拟题C答案

《C语言程序设计》模拟卷 C卷

题号一二三四总分

得分

评卷人

一、选择题

1.以下说法中正确的是( C )。

A.C语言程序总是从第一个函数开始执行

B.C语言程序中,要调用的函数必须在main()函数中定义

C.C语言程序总是从main( )函数开始执行

D.C语言程序中的main( )函数必须放在程序的开始部分

2.下列为字符常量的是( C )。

A.“a” B. ‘ab’ C. ‘\n’ D.‘\084’

3.在C语言中,下面字符串能用作变量名的是(D )。

A. a+b

B. auto

C. 2-and

D. a2

4.在C语言中运算对象必须是整型的运算符是( A )。

A. %

B. /

C. = =

D. <=

5.若有以下定义:int x=10,y=3,z; 则语句:printf(“%d\n”,z=(x%y,x/y));的输出结果为( D )。

A. 1

B. 0

C. 2

D. 3

6.表达式( A )的值是整数类型。

A. 15/2

B. 15/2+2.0

C. 25/5.0

D. 0.5*10

7.若double x=2,y;则执行y=x+3/2;后,y的值是( B )。

A. 3.500000

B. 3.000000

C. 2.000000

D. 3

8.C语言程序的基本单位是( B )。

A. 程序行

B. 语句

C. 函数

D. 字符

9.设int类型的数据长度为2字节,则int类型数据的取值范围是(B )。

A. 0~255

B. -32768~32767

C. -256~255

D. 0~65535

10.语句int (*p)( )的含义是( C )。

A. p是一个指向一维数组的指针变量

B.p是指针变量,它指向一个整型数据的指针

C.p是一个指向函数的指针,该函数的返回值为整型

D. 以上答案都不对

11.下面程序的输出结果是( A )。

main()

{ int x =10,y =10;

printf(“%d,%d\n”,x--,y--);

}

A. 10,10

B. 9,9

C. 9,10

D. 10,9

12.( B )是C语言的标准函数名。

A. scanf

B. case

C. while

D. int

13.下面程序的输出结果是( D )。

void main()

{ int i=10;

switch(i)

{

case 9:i+=1;

case 10:i+=1;

case 11:i+=1;

case 12:i+=1;

}

printf(“i=%d\n”,i);

}

A. 10

B. 11

C. 12

D. 13

14.以下定义语句中,错误的是( D )。

A. int a[ ]={1,2}

B. int a[ ][3]={1,2,3,4,5};

C. char s[10]=“test”;

D. int n=5,a[n];

15.在一个源文件中定义的全局变量的作用域为( D )。

A. 本文件的全部范围

B. 从定义该变量开始至本文件结束

C. 本函数的全部范围

D. 本程序的全部范围

16.int型变量在内存中占2个字节,若int a[10]={0,2,4};则数组a所占字节数是(C )。

A.3

B.10

C.20

D.6

17.有以下程序

#include

#include

main()

{

char a[7]="China";

int i,j;

i=sizeof(a);

j=strlen(a);

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

}

程序运行后的输出结果是( C )。

A. 5 5

B. 7 6

C. 7 5

D. 6 6

18.下面程序运行时,如果从键盘上输入5,则输出的结果是( B )。

void main( )

{ int x;

scanf(“%d”,&x);

if (x - - < 5) printf(“%d\n”,x);

else printf(“%d\n”,x + +);

}

A. 3

B. 4

C. 5

D. 6

19.若有以下说明和语句,且已知char型占1个字节,int型占两个字节,float 型占4个字节。 struct st

{int num;

char name[10];

int age;

float score;

}student;

则结构体变量student占用内存的字节数是(B )。

A. 10

B. 18

C. 9

D. 2

20.以下程序的输出结果是( D )。

void main()

{ char s[ ]="ABCD";

int *p;

for (p=s;p

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

}

A.ABCD B. A

ABC B

AB C

A D

C. D

D. ABCD

C BCD

B CD

A D

二、填空题

1.若有定义int a[2][5],则整型数组a包含有 10 个元素。2.数学表达式x3+y3在C语言中应表示为 pow(x,3) + pow(y,3) 。3.若有数据3.5需要存储到变量x中,则变量x定义应写为 float 。4.有如下程序段

int *p,a=10,b=1; p=&a; a=*p+b;

执行该程序段后,a的值为 11 。

5.表达式“0≤a≤10”在C语言中应表示为 a>=0&&a<=10 。6.若有定义float x,y;则从键盘给x、y输入数据的语句应写为 Scanf("%f%f",&x,&y) ;

7.有以下程序

#define SQR(x) (x)*(x)

main()

{int a,k=3;

a=SQR(k+1);

printf(“%d\n”,a);

}

程序运行后的输出结果为。

8.以下程序的输出结果为。

void main( )

{ int i,j,a[ ]={1,2,3,4,5,6,7,8,9,10};

int sum=0;

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

sum=sum+a[i];

printf("%4d",sum);

}

9.以下程序的输出结果为。

#include

#include

void main( )

{char str1[20]=”Computer”,str2[ ]=”Language”;

strcat(str1,str2);

printf(“%s\n”,str1);

}

10.以下程序的输出结果为 。

main( )

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

p=a;

*(p+3)+=2;

printf(“%d,%d \n”,*p,*(p+3));

} 三、判断题(对的填√,错的填×)

1.C 语言源程序文件的扩展名均为 .c 。√

2.C 语言中的基本数据类型有整型、字符型和实型。√

3.C 语言中不同的函数中不可以使用相同名字的变量。×

4.C 语言程序区分字母大小写,符号常量必须定义为大写。×

5.若int x=100,y=200,则语句printf(“%d ”,(x,y))的输出结果是100。×

6.C 语言的源程序经过编译、连接后才能运行。√

7.若int a[2][2]={{1},{2,3}};则a[0][1]的值为0。×

8.C 语言的数组名是一个地址常量,不能对它进行加、减和赋值运算。×

9.若x 为某函数f 之内说明的变量,则当函数f 执行完后,x 值无定义。√

10.若int i=10,j=2;则执行i*=j+8;后i 的值为28。×

四、编程题

1.输入圆的半径,计算并输出圆的周长、面积及球的体积(结果保留两位小数)。

2.有一个函数:

y=21311x x x ??-??-?

101011≥<≤

编程输入x 的值,求y 的值。

3.Fibonacci 数列为1、1、2、3、5、8、13、……,编程输出该数列的前20项。

4.编程输出所有的水仙花数。水仙花数是一个3位数,其各位数字立方和等于该数本身。如:

153=13+53+33,故153是水仙花数。

5.编程从输入的10个数中,去掉一个最大数和一个最小数,求剩余数的平均值。

参考答案:

第1题:程序代码

#define PI 3.1415926

main( )

{

float r,c,s,v;

printf("Please enter r:");

scanf("%f",&r);

c=2*PI*r;

s=PI*r*r;

v=4/3.0*PI*r*r*r;

printf("c=%6.2f\n",c);

printf("s=%6.2f\n",s);

printf("v=%6.2f\n",v);

getch();

}

第2题:程序代码

main()

{float x,y;

printf("Please enter x:");

scanf("%f",&x);

if(x<1)

y=x;

if(x>=1 &&x<10)

y=2*x;

if(x>=10)

y=3*x-2;

printf("y=%f\n",y); }

第3题:程序代码

#include

void main()

{int f[20]={1,1},i; for(i=2;i<20;i++)

f[i]=f[i-2]+f[i-1]; for(i=0;i<20;i++)

{if(i%4==0)

printf("\n");

printf("%5d",f[i]);

}

getch();

}

第4题:程序代码

void main()

{int m,i,j,k; for(m=100;m<=999;m++)

{i=m%10;

j=m%100/10;

k=m/100;

if(i*i*i+j*j*j+k*k*k==m)

printf("%d\t",m); }

printf("\n");

}

第5题:程序代码

#define N 10

main()

{float a[N],aver,sum=0,t;

int i,j;

printf("enter data to a:");

for(i=0;i

scanf("%f",&a[i]);

for(i=1;i

for(j=0;j

if(a[j]

{t=a[j];a[j]=a[j+1];a[j+1]=t;} printf("the sorted data:");

for(i=0;i

printf("%6.2f",a[i]);

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

sum=sum+a[i];

aver=sum/8;

printf("aver=%6.2f\n",aver);

}

C语言程序设计模拟试题1(附答案)

《C语言程序设计》模拟试卷一 一、单项选择题(每题2分,共30分) 1、下列有关C语言的叙述中错误的是()。 A) C语句必须以分号结束 B) 任何一个C程序中有且只有一个主函数 C) 复合语句在语法上可被看作一条语句 D) C程序中对数据的任何操作都可由运算符实现 2、以下不能定义为用户标识符的是()。 A) MAIN B) _HJ C) 2ong D) LINE1 3、下列符号中用来表示C语言中的回车换行的是()。 A) \r B) \n C) \b D) \t 4、如有如下定义:int a=1,则语句printf(“%d,%d”, a, ++a);的运行结果为()。 A) 1, 1 B) 1, 2 C) 2, 2 D) 2, 1 5、已知ch为字符型变量,下面表达式中正确的是()。 A) ch=’\xff ’B) ch=’\ff ’C) ch=’ ff ’D) ch=” ff ” 6、以下能正确定义一维数组的是()。 A) int a[5]={0,1,2,3,4,5}; B) int a[5]=”012345”; C) char a[ ]=”012345”; D) char a[5]={0,1,2,3,4,5}; 7、以下语句中能正确定义变量并赋初值的是()。 A) char c=65; B) float f=f+1.1; C) double x=12.3e3.6; D) int m=n=2.0; 8、在执行下列程序时输入:1357924,则程序的运行结果为()。 main( ) { int x, y; scanf(“%2d%2d”,&x,&y); printf(“%2d”,x*y); } A) 13 B) 1357 C) 74 D) 741 9、执行下列程序段后输出的结果是()。 x = 9; while (x > 7)

山大网络教育英语模拟题一含答案

模拟题一 第一部分:交际用语 此部分共有5个未完成的对话,针对每个对话是未完成的部分有4个选项,请从A、B、 C、D四个选项中选出可以填入空白处的最佳选项,并用铅笔将答题卡上的相应字母涂黑。 1. — Hello! May I talk to the manager about the price —. A. Sorry, he is out at the moment B. No, you can’t C. Sorry, y ou can’t D. I don’t know 2. —I’m terribly sorry that I made your table cloth dirty. —______. A. Never mind B. Don’t mention it C. That’s right D. Sorry 3. ― Do you mind if I open the window ―______ I feel a bit cold. A. Of course not. B. I’d rather you didn’t. C. Go ahead. D. Why not 4. —Excuse me, sir. Where is Dr. Smith’s office —. A. You can’t ask me B. Good question C. Please don’t say so D. Sorry I don’t know, but you can as k the man over there 5. — Good morning, sir. May I help you —. A. No, I don’t buy anything B. No, I don’t need your help C. Yes, I need some salt D. Oh, no. That’s Ok 第二部分:阅读理解 此部分共有2篇短文,每篇短文后有5个问题。请从每个问题后的A、B、C、D四个选项中,选出可以填入空白处的最佳选项,并用铅笔将答题卡上的相应字母涂黑。 Passage 1

最新山东大学网络教育期末英语模拟题三及答案

模拟题三 第一部分:交际用语 此部分共有5个未完成的对话,针对每个对话有4个选项,请从A、B、C、D四个选项中选出可以填入空白处的最佳选项,并用铅笔将答题卡上的相应字母涂黑。 1. –Hello! I want to make a person-to-person call to Toronto, Canada. The number is 932-0806. --___B_____. A. But I don’t know whom do you want to call. B. What’s the name of the party you’re calling? C. What’s the address of the person you’re calling? D. What’s the extension number you’re calling? 2. ---Have you ever been to the Temple of Heaven in Beijing? -- ___B__. A. No, but I have no time. B. No, but I’d like to. C. Yes. I was too busy then. D. Yes. I couldn’t do it right now. 3. –Is everyone always so helpful to you in your office? --- __D___. A. Yes. What can I do for you now? B. Yes, there is a hotel nearby. C. Yes. Can I help you? D. Yes. It’s a great place to work. 4. ---It’s a beautiful day today! How about a little trip out into the country? --- ___A______. A. That sounds great. What should I do for the preparation? B. I don’t know. I really haven’t thought about what we’d do. C. Well, would you like me to pack picnic or to buy something? D. It’s all right. Thank you. 5. –Excuse me. Could you show me the way to the nearest subway station? --- ___C____. A. Any time. It’s next to the post office. B. All right. Do you want me to go with you? C. No problem. With pleasure. D. Of course not. Go down this street and turn right. 第二部分:阅读理解 此部分共有2篇短文,每篇短文后有5个问题。请从每个问题后的A、B、C、D四个选项中,选出可以填入空白处的最佳选项,并用铅笔将答题卡上的相应字母涂黑。 Passage 1 The greatest recent social changes have been in the lives of women. During the twentieth century there has been a remarkable shortening of the proportion of a woman’s life spent in caring for children. A woman marrying at the end of the nineteenth century world probably have been in her middle twenties, and would be likely to have seven or eight children, of whom four or five lived till they were five years old. By the time the youngest was fifteen, the mother would have been in her early fifties and would expect to live a further twenty years, during which custom, opportunity and health made it unusual for her to get paid work. Today women marry younger and have fewer children. Usually a woman’s youngest child will be fifteen when she is forty-five and can be expected to live another thirty-five years and is likely to take paid work until retirement at sixty. Even while she has the care of children, her work is lightened by household appliances and convenience foods. The important change in women’s life-pattern has only recently begun to have its full effect on women’s economic p osition. Even a few years ago most girls left school at the first opportunity, and most of them took a full-time job.

山东大学网络教育考试模拟题及答案(计算机信息管理)—网页设计与制作2

网页设计与制作模拟题2 一、单项选择题 1.在配置连接一个SQL Server数据库的ODBC,下列说法中,(C)是不准确的。 A. 配置时,可以直接测试数据源 B. 配置时,必须指定数据库的主机地址 C. 配置时无须输入用户和密码 D. 对Web应用而言,应该建立System DSN 2.因特网上的域名服务称为( B )。 A. WINS B. DNS C. ARP D. TELNET 3.构成DHTML的各种技术中不包括( B )。 A. 客户机端脚本 B. 服务器端脚本 C. CSS D. DOM 4.HTML是一种页面( D )型的语言。 A. 程序设计 B. 执行 C. 编译 D. 描述 5.在HTML中定义一个表单应该使用以下标记( A ) A.

B. C. D. 6.在小型网站建设小组中的基本组成人员(角色)一般不包括( D )。 A. 网站规划人员 B. 测试人员 C. 采编人员 D. 财务人员 7.HTTP协议是一种( D )协议。 A.文件传输协议 B.远程登录协议 C.邮件协议 D.超文本传输协议 8.在表单中需要把用户的数据以密码的形式接受,应该定义的表单元素是 ( B )。 A. B. C. D. 9.JavaScript的运行必须依赖( B )的支持。 A.Web服务器 B.编译器 C.虚拟机 D.客户端浏览器

10.在FrontPage中,要验证网页中链接的有效性,可以在( B )视图中进行操作。 A.网页 B.超链接 C.导航 D.报表 11.正确描述创建一个段落的句法是( A ) A.

Paragraph Text

B.Paragraph Text C.Paragraph Text D.Paragraph Text 12.在ADO对象中,代表了对数据库操作返回的整个结果集的对象是( D ) A.Property B.Command C.Connection D.Recordset 13.有关HTML中表格的写法,下列( C )表示一个表格数据(单元格)。 A.
B.
C. D. 14.在HTML页面中插入图片的标记是( A )。 A. B. C.
D. 15.关于HTML中的FORM(表单),其ACTION功能,下列( D )是不准确的。 A. ACTION指向一个接收表单全部信息的URL B. ACTION包括POST和GET C. ACTION可以将表单信息送给当前脚本 D. ACTION不是表单的唯一属性 16.表单中的INPUT标记,其类型不包括( B )。 A. TEXT B. OPTION C. RESET D. SUBMIT 17.在ADO的对象模型中,下列( A )定义了对数据源的指定命令,作用相当于 一个查询。 A. Connection B. Recordset C. Command D. Post 二、多项选择题 1.关于IP地址与域名说法正确的是( AC )。 A. IP地址以数字表示,域名以字符表示 B. 两者都限制在32位内

2017年12月山大网络英语三试题

College English Test for Non-English Majors of Adult Education (英语三) I. Vocabulary and Structure There are 35incomplete sentences in this part. For each sentence there are 4 choices marked A, B, C, and D. Choose the One answer that best completes the sentence. 1.Do you want to come for a B on my motorbike? A. run B. ride C. drive D. walk 2.The repairs to my car C me a lot of money.A. worth B. prize C. cost D. spend 3.______A___ there is no opposition, I will act as representative of our class. A. provided (that) B. supposed (that) C. opposed (that) D. proved (that) 4.She _____D____ (up ) her forehead in disgust. A. looked B. pushed C. pulled D. wrinkled 5.Something has to be done D the recent rise in unemployment. A. to counter B. to count C. to account D. to encounter 6.The party leader is an extreme left-winger, but his deputy is more B in his views. A. modest B. moderate C. monitor D. modern 7.In ____A_____ of her apology, we decided to take no further action. A. view B. fact C. idea D. opinion 8.The boy ’ sB__ development was very advanced for his age. A. intelligent B. intellectual C. internal D. external 9.You may keep the book a further week _____D_______ no one else requires it. A. as if B. even if C. even though D. provided that 10. The writer __C__ the question of environmental pollution in his article. A. kept from B. kept to C. kept up D. kept in 11. The teacher said Tom is __B___ average in his lessons. A. on B. above C. over D. up 12. Friendly _____C_____ between different peoples facilitate the cultural and economic interchange. A. contests B. contents C. contacts D. concerts 13.He noted _____A____ her address on a piece of paper. A. down B. on C. up D. in 14.This is a private dining room where members could ____C_____ groups of friends. A. welcome B. accept C. entertain D. receive 15.We ______A________ to the hotel manager that the room was too noisy. A. complained B. told C. talked D. spoke 16.He was told that he was ____B_____ to inquire into the cause of the accident. A. posted B. assigned C. sent D. placed 17.The amount of sleep a person needs also increases if he/she has beendeprived of sleep in previous days.(A) A. taken away B. cured C. rid D. ensured 18.What is really abnormal sleepiness is now almost the norm.(C) A. unique B. regular C. unusual D. odd 19.The microscope can ___C_ the object 100 times in diameter. A. intensify B. strengthen C.magnifyD. expand 20.Eating too much sugar can lead __D__ all sorts of health problems. A. in B. on C. until D. to 21.Some people like to own a car as a symbol of ___C . A. place B. post C. status D. position 22.The old lady is friendly. She feels no __D_ towards anybody. A. capability B. probability C. possibility D. hostility 23. __D_ good weather, our ship will reach Shanghai Monday evening. A. Provided B. Despite C. Considered D. Given 24.The children are _A_ computer games.A. addicted to B. attempted to C. adopted to D. associated to 25.You ’ ll have to work harder toA_ up with the top students in your class. A. catch B. take C. hold D. make

C语言程序设计模拟试题A附答案

《C语言程序设计》模拟试卷A 一、单项选择题(每题2分,共20分) 1、下列有关C语言的叙述中错误的就是(D)。 A) C语句必须以分号结束 B) 任何一个C程序中有且只有一个主函数 C) 复合语句在语法上可被瞧作一条语句 D) C程序中对数据的任何操作都可由运算符实现 2、以下不能定义为用户标识符的就是(C)。 A) MAIN B) _HJ C) 2ong D) LINE1 3、以下能正确定义一维数组的就是(C)。 A) int a[5]={0,1,2,3,4,5}; B) int a[5]=”012345”; C) char a[ ]=”012345”;D) char a[5]={0,1,2,3,4,5}; 4、执行下列程序段后输出的结果就是(C)。 x = 9; while (x > 7) { printf(“*”); x- -; } A) **** B) *** C) ** D) * 5、设char str1[10] = “ABCDE”, str2[10] = “xyz”; 则执行语句 printf(“%d”, strlen(strcpy(str1, str2))); 后的输出结果就是(D)。 解析: strcpy(str1,str2); 后,str1[] 里就是"XYZ", Z 后面有字符串结束符 strcpy(str1,str2); 执行后,函数返回的就是str1, 因为str1[] 里就是新值"XYZ", 而 strlen(strcpy(str1,str2)) 就就是strlen(str1的新值),所以得3。 strlen 统计到字符串结束符以前,即,不计入字符串结束符。 A) 9 B) 8 C) 5 D) 3 6、若用数组名作为函数调用的实参,则传递给形参的就是(A)。

山东大学--网络教育--物理化学1-4--答案

物理化学1 一、 下列各题均有四个备选答案 ,请从中选择一个最佳的,用“√”标记 1. 1mol 理想气体于恒压下升温1℃,试求过程中体系与环境交换的功W A A. 8.314J B. 4.18J C. 0 D. 29.099J 2. 恒温恒压下,在A 与B 组成的均相体系当中,若A 的偏摩尔体积随浓度 的改变而增加时,则B 的偏摩尔体积将如何变化? B A. 增加 B. 减少 C. 不变 D. 不一定 3. 一个人精确地计算了他一天当中做功所需付出的能量,包括工作、学习、 运动、散步、读报、看电视,甚至做梦等等,共12800kJ 。他认为每天所需摄取的能量总值就是12800kJ 。这个结论是否正确? D A. 正确,因为符合能量守恒定律 B. 正确,因为不违背热力学第一定律 C. 不正确,因为违背热力学第一定律 D. 不正确,因为违背热力学第二定律 4. 在一个抽空容器中放入足够多的水、CCl 4(l)及I 2(g)。水和CCl 4共存时 完全不互溶,I 2(g)可同时溶于水和CCl 4之中,容器上部的气相中同时含有I 2(g)、H 2O(g)及CCl 4(g)。此平衡体系的自由度数为 C A. 0 B. 1 C. 2 D. 3 5. 在三组分体系相图中最多能有几相平衡共存 C A. 5 B. 2 C. 3 D. 4 6. 在300K 下,一个抽空的容器中放入过量的A(s),发生下列反应 A(s) B(s)+3D(g) 达到平衡时D(g)的压力 *D p =1.02kPa 。 此反应的标准平衡常数θ K (300K)应为 D A. 1.02 B. 3.06 C. 1.04×10-4 D. 1.03×10-6 7. 反应A(g)+2B(g) 2D(g)在温度T 时的θ K =1。若温度恒定为T ,在一 真空容器中通入A 、B 、D 三种理想气体,它们的分压恰好皆为101.3kPa 。 在此条件下,反应 C A.从右向左进行 B.从左向右进行 C.处于平衡状态 D.无法判断 8. 下列化合物中,哪个的无限稀释摩尔电导率不可以用m Λ对 作图外推 至c →0而求得 B A. NaCl B. CH 3COOH C. CH 3COONa D. HCl 9. 当电池反应自发进行时 A A. E > 0, ΔG < 0; B. E > O, ΔG > 0; C. E < 0, ΔG > 0; D. E < O, ΔG < 0 。 10. 在溶液中发生反应时, 离子强度 I 对反应速率常数 k 有影响。当两种 反应离子带相反电荷时 B A. k 随 I 增大而增大; B. k 随 I 增大而减小; C. k 与 I 无关; D. k 与 I 的关系难以确定 11. 反应CO(g) + 2H 2(g)CH 3OH(g)在恒温恒压下进行,当加入某种催 化剂,该反应速率明显加快。不存在催化剂时,反应的平衡常数为K ,活化能为E a ,存在催化剂时为K '和E a ',则 C A. K '=K ,E a '>E a B. K 'E a C. K '=K ,E a '

山大网络教育英语三模拟题(3卷全)(推荐文档)

(英语三模拟题2) I. V ocabulary and Structure There are 30 incomplete sentences in this part. For each sentence there are 4 choices marked A, B, C, and D. Choose the One answer that best completes the sentence. 1. I think the team’s performance was by the sudden rain. A. effected B. affected C. defected D. infected 2. Tourism has agriculture as the nation’s main industry. A. replaced B. placed C. taken place D. substituted 3. This district has changed so much since I was last here that I hardly __________ it now. A. see B. recognize C. organize D. admit 4. Reducing unemployment will be the main _____________ for the new government. A. challenge B. struggle C. war D. fighting 5. The old machine won’t ___________ properly if you don’t oil it regularly. A. affect B. effect C. function D. practice 6. I’m sorry to ______________ you, but can you direct me to the railway station? A. worry B. bother C. upset D. hurry 7. The crowd started to _____________ when the night fell. A. break out B. break in C. break over D. break up 8. ___________ another occasion, he landed in a deserted car park. A. On B. For C. To D. In 9. He came here for a ________ aim. A. regular B. specific C. especial D. famous 10. In learning a foreign language, various forms of practice are good __________. A. disciplines B. theories C. techniques D. skills 11. Yesterday I went shopping and found a lot of ___________ in the sale. A. barges B. bargains C. barrages D. barracks 12. There is no ____ ___ for air conditioners during the winter. A. sale B. selling C. purchase D. buy 13. Eventually, your body will demand that the debt be repaid. A. Otherwise B. However C. Nevertheless D. Ultimately 14. Sleep deprivation also magnifies alcohol’s effects on the body. A. intensifies B. weakens C. reduces D. expands 15. In a ten-year _________ from 1976 to 1985, the total world fish catch increased 29%. A. expanse B. expense C. stance D. span 16. He quickly ________ to the climate in the high mountains and finally became an outstanding soldier. A. adopted B. adapted C. addicted D. added 17. Would you please ________ your visit for a few days, stay a few days longer? A. expand B. lengthen C. stretch D. extend 18. The more dangers we ________, the harder should we push forward. A. deal B. encounter C. account D. dispose 19. Please __________ sure that the house is locked before you leave.

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

山东大学网络教育期末考试试题及答案-生理学B

生理学 B 一、单项选择题 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.心率>180次 D. 颈动脉窦内压降低 10.静脉回心血量增多时,可引起 A.心室后负荷减少 B.心室舒张期延长 C. 心室前负荷增加 D.充盈期缩短 11.血浆pH值主要通过下列哪条途径维持的? A.血液B.消化道C.肾D.皮肤 12.呼吸频率从12次/分增加到24次/分,潮气量从500ml减少到250ml,则: A.肺通气量增加B.肺泡通气量增加 C.肺泡通气量不变D.肺泡通气量减少 13.在下列哪一时相中,肺内压等于大气压? A.吸气和呼气初B.吸气末和呼气初 C.呼气初和呼气末D.呼气末和吸气末 14.使胰蛋白酶原活化的最主要的物质是: A.盐酸B.组织液C.肠致活D.糜蛋白酶 15.促胰液素能促进胰腺分泌的特点是: A.大量的水分和碳酸氢盐,而胰酶含量很少 B.少量的水分和碳酸氢盐,而胰酶含量也很少 C.少量的水分和碳酸氢盐,而胰酶含量很丰富 D.大量的水分,而碳酸氢盐和胰酶含量很少 16.滤过分数是指: A.肾血流量/ 心输出量B.肾血浆流量/ 肾血流量 C.肾血流量/ 肾血浆流量D.肾小球滤过率/ 肾血浆流量

山东大学网络教育人力资源管理

人力资源管理 1 一、单选题 1.下列说法正确的是(C ) A.当组织效率低时应该对一般员工进行培训 B.当组织效率低时应该对管理人员进行培训 C.当组织效率低时应该对一般员工和管理人员都进行培训 D.当组织效率低时不一定会产生培训需求 2.(A)是指工作中不能再进一步分解的最小动作单元。 A.职位 B.工作要素 C.职务 D.任务 3.为了补偿员工额外或特殊的劳动消耗,保证员工的工资水平不受特殊条件影响而支付的薪酬是(D) A.基本工资 B.绩效工资 C.福利 D.津贴 4.下列不属于外部渠道招聘优势的是(B)。 A.为企业带来不同的价值观和新观点 B.不存在“逆向选择”问题 C.外部渠道广阔 D.是一种很有效的信息交流方式 5.绩效考核指标设计过程的第一步为(B)。 A.试用 B.归类合并筛选 C.指标内容设计 D.量化 6.不属于培训效果评估的指标是(D) A.知识 B.行为 C.反应 D.成本费用 7.适合于那些以外显动作为主的职务,对于脑力劳动成分比较高的职务,效用不大的工作分析方法是(B)。 A.见习法 B.观察法 C.工作日志法 D.访谈法 8.副厂长属于(B)。 A.职位 B.职务 C.责任 D.责任 9.想如何避免在绩效评价中可能出现的评价者个人偏见、趋中趋势和晕轮效应等问题,可以从(D)做出努力。 A.确保评价者清楚地了解各种在绩效评价过程中容易出现的问题 B.选择正确的评价工具 C.对评价者进行如何避免在绩效评价过程中容易出现的问题的培训 D.以上都对 10.在评价中心法,被测者面对大量报告,备忘录、电话记录、信函以及其他材料,并按要求对每一份材料作适当的处理,这种方式是(C)。 A.角色扮演 B.管理游戏 C.公文处理 D.无领导小组讨论 二、简答题 1.完善的培训系统包括哪几个环节? 1. 完善的培训系统包括四个环节,具体如下: (1)培训需求分析,具体包括组织分析、任务分析、个人分析,目的是为了确定培训项目。(2)制定培训计划,包括制定指导性目标、考虑受训者的准备和动力、遵循学习原则和选择培训者四个方面。 (3)实施培训,按照事先确定的培训方式进行培训。 (4)培训项目评估,从学习、反应、行为和结果四个方面评估

山东大学网络教育-(本科)英语答案二

模拟题二 模拟题二第一部分:交际用语 此部分共有5个未完成的对话,针对每个对话是未完成的部分有4个选项,请从A、B、 C、D四个选项中选出可以填入空白处的最佳选项,并用铅笔将答题卡上的相应字母涂黑。 1. ---Would you like to have dinner with us this evening? ---___C_____. A. Ok, but I have to go to a meeting now. B. No, I can’t C. Sorry, this evening I have to go to the airport to meet my parents. D. I don't know. 2. --- Please help yourself to some fish. ---___B____. A. Thanks, but I don't like fish B. Sorry, I can't help C. Well, fish don't suit me D. No, I don’t want to do that 3. ---It’s getting late. I’m afraid I must be going now. ---OK. ____D__. A. Take it easy B. Go slowly C. Stay longer D. See you 4. ---Could I ask you a rather personal question? ---_____B____ A. Yes, don’t worry. B. Of course, go ahead. C. Yes, help yourself. D. Of course, why not? 5. ---Well done. Congratulations on your success. --- _____A______. A. Thank you very much B. Oh, no, no C. No, I didn’t do well D. So rry, I couldn’t do any better 模拟题二第二部分:阅读理解 此部分共有2篇短文,每篇短文后有5个问题。请从每个问题后的A、B、C、D四个选项中,选出可以填入空白处的最佳选项,并用铅笔将答题卡上的相应字母涂黑。 Passage 1 Television has opened windows in everybody’s life. Young men will never again go to war as they did in 1914. Millions of people now have seen the effects of a battle. And the result has been a general dislike of war, and perhaps more interest in helping those who suffer from all the terrible things that have been shown on the screen. Television has also changed politics. The most distant areas can now follow state affairs, see and hear the politicians before an election. Better informed, people are more likely to vote, and so to make their opinion count. Unfortunately, television’s influence has been extremely harmful to the young. Children do not have enough experience to realize that TV shows present an unreal world; that TV advertisements lie to sell products that are sometimes bad or useless. They believe that the violence they see is normal and acceptable. All educators agree that the “television generations”

相关文档
最新文档