文档视界 最新最全的文档下载
当前位置:文档视界 › 专升本复习资料-年软件学院专业课试题-理工类(answer)

专升本复习资料-年软件学院专业课试题-理工类(answer)

专升本复习资料-年软件学院专业课试题-理工类(answer)
专升本复习资料-年软件学院专业课试题-理工类(answer)

一、单项选择题(共20小题,每题2分,共40分)

以下每小题列出的四个备选答案中只有一个符合题目要求,请将正确答案填入“单项选择题答题表”

对应的格中,未填入答题表,错选或多选均不得分。

1.表示当x的取值在[1,10]和[200,210]范围内为真,否则为假的C语言表达式为 C

A. (x>=1&&x<=10)&&(x>=200&&x<=210)

B. (x>=1||x<=10)||(x>=200||x<=210)

C. (x>=1&&x<=10)||(x>=200&&x<=210)

D. (x>=1||x<=10)&&(x>=200||x<=210)

2.若有以下定义:

int a[]={0,1,2,3,4,5,6,7,8,9},*p=a,i;其中0≤i≤9,则为数组元素a[i]不正确的引用是 D

A. *(p+i)

B. *(a+i)

C. p[i]

D. *a[i]

3.判断char型变量ch是否为数字的C表达式为 B

A. ('0'<=ch&ch<='9')

B. (ch>='0'&&ch<='9')

C. (ch>="0"&&ch<="9")

D. (ch>=0&&ch<=9)

4.以下程序段构成的循环是 C

for(x=0,y=0;(y!=12&&x<4);x++) ;

A. 无限循环

B. 循环次数不定

C. 执行4次

D. 执行3次

5.以下程序的输出结果是 A

#include

main()

{ int i;

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

{ if(i%2) printf("*");

else continue;

printf("#");

}

}

A. *#*#*#

B. *##*##*##*##

C. *#*#

D. #*#*

6.以下程序的输出结果是 C

#include

#define MAX(x,y) (x)>=(y)?(x):(y)

main()

{ int i=10,j=15;

printf("%d",10*MAX(i,j));

}

A. 15

B. 100

C. 10

D. 150

7.设有说明:int (*ptr)[8];则ptr是 C

A. 指向整形变量的指针

B. 指向函数的指针,该函数的返回值为int 数据

C. 指向一维数组的指针,该数组的基类型为int

D. 长度为8的一维指针数组

8.以下程序段的输出结果是 A

char a[]="0123456789",*p=a+4;

printf("%c",*p++);

A. 4

B. a[4]的地址

C. 6

D. 5

9.下面程序的运行结果是 B

#include

main()

{ int a=1,b=10;

do

{ b?=a;

a++;

}while(b??<0);

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

A. a=3,b=11

B. a=2,b=8

C. a=1,b=?1

D. a=4,b=9

10.执行下面程序,输入2后的输出结果是 C

#include

main( )

{ int k;

scanf("%d",&k);

switch(k)

{ case 1:printf("%d\n",k++);break;

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

case 3:printf("%d\n",k++);break;

default:printf("Full!\n");

}

}

A. 1

B. 2

C. 2 3

D. 2 3 Full

11.若有以下结构体和变量定义,则以下引用方法不正确

...的是 D

struct worker

{ int sno;

char *name;

} work,*p=&work;

A. work.sno

B. (*p).name

C. p->sno

D. work->sno

12.char s[10],*p=s;则以下不正确的表达式是 B

A. p=s+1;

B. p=s++;

C. *(s+1)=*p;

D. *p++=s[2];

13.以下不能对二维数组a正确初始化的语句是 A

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

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

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

D. int a[][3]={{1,0,1},{},{1,1}};

14.若有以下说明和语句,则输出结果是 C

char sp[]="\t\n\\0will\n";

printf("%d",strlen(sp));

A. 4

B. 3

C. 9

D. 字符串中有非法字符

15.对于结构体类型,以下说法正确的是 C

A. 定义结构体时不能定义结构体变量

B. 结构体变量所占的空间等于占空间最大的成员所需空间

C. 结构体类型可以作为返回值类型

D. 结构体定义后可以与标准类型一样使用,但前面必须使用struct

16.在C语言中,要求运算数必须是整型的运算符是 D

A. /

B. ++

C. !=

D. %

17.以下程序段在VC6.0环境中运行的输出结果是

struct studentinfo

{ char name[10];

int SNO;

char sex;

} student,*ps=&student;

printf("%d,%d",sizeof(student),sizeof(ps));的输出结果是 B

A. 15,15

B. 15,4

C. 15,2

D. 4,2

18.根据17题中的结构体和变量定义,不能

..正确输出name成员的语句是 C

A. printf("%s",https://www.docsj.com/doc/b318514238.html,);

B. printf("%s",ps->name);

C. printf("%s",*https://www.docsj.com/doc/b318514238.html,);

D. printf("%s",(*ps).name);

19.以下程序的输出结果是 A

main()

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

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

}

A. 0650

B. 147

C. 5430

D. 输出值不定

20.设有以下变量定义:char str[20],i;

当输入“zhang空格hong回车”时,能正确读入“zhang hong”的程序段是 C

A. scanf("%s",str);

B. for(i=0,str[i]=getchar();str[i]!='\n';)

str[i++]=getchar();

C. gets(str);

D. for(i=0,str[i]=getchar();str[i]!='\0';i++)

str[i]=scanf("%c",str[i]);

二、填空题(共10题,每题1分,共10分)

请按照试题中对应的标号顺序填写到答题表中

1.C函数中若省略函数类型说明,则该函数类型默认为 int 。

2.局部变量默认的存储类型为 auto 。

3.文件包含命令#include有两种形式,区别是搜索路径不同。

包含系统文件string.h应该使用 #include

4.如果要限定变量的作用域仅在当前文件有效,应使用 static 关键字。

5.break和continue都可以用于循环结构中,其中 continue 只是结束本次循环,回到循环体第一条语

句开始下次循环。

6.C语言变量有四种存储类别,其中关键字extern的含义是声明外部变量。

7.静态变量的初始化是在编译阶段完成的。

8.数组名作为实参使用时,传送的是数组首地址。

9.sizeof运算符的对象即可以是变量,也可以是常量。

10.C语言中多维数组可嵌套定义,即n维数组可看作元素类型为 n-1维数组。

三、判断题

判断下题是否正确,正确的划√,错误的划×(每题1分,共15分)

1.在do-while循环中,循环体至少执行一次。(√)

2.C语言中局部变量和全部变量可以同名,并且在函数内局部变量优先于全局变量。(√)

3.预处理命令都是以#号开头,且每行只能写一条命令。(×)

4.定义二维数组时,如果对数组的所有元素赋值,则可省略长度说明。(×)

5.C语言要求所有被调用的函数一定要在调用语句之前进行定义。(×)

6.函数内定义的静态变量当函数执行完其值依然存在。(√)

7.void关键字只能用于定义函数,不能定义变量。(×)

8.一个函数直接或间接的调用自己,称作递归调用。(√)

9.全局变量是指在main函数中定义的变量。(×)

10.for(exp1;exp2;exp3) 语句s;中的s可以是空语句。(√)

11.结构体可以与标准类型一样使用,但前面须用struct关键字。(×)

12.main函数称为主函数,是个无参函数。(×)

13.表达式n=++i等价于n=i;i=i+1;。(√)

14.语句char s[]="test";与char s[]={'t','e','s','t'};是等价的。(×)

15.C函数中的函数即可以嵌套定义,也可以嵌套调用。(×)

四、阅读程序题

本题共5小题,每小题5分,共25分,请写出程序的运行结果

1.【程序】

#include

#include

main()

{ char i,s[5][81],max=0;

printf("input 5 strings");

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

gets(s[i]);

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

if(strlen(s+i)>max)

max=i;

puts(s[max]);

}

【运行结果】写出从键盘输入一下5个字符串时程序的运行结果

"Program","test","I am a student","wee","computer"

I am a student

2.【程序】

#include

main()

{ int i,f1=1,f2=1;

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

{ printf("\t%d\t%d",f1,f2);

f1=f1+f2;f2=f1+f2;

}

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

}

【运行结果】

1 1

2

3 5 8 13 21 3

4 5589,144

3.【程序】

#include

void fun(int n)

{ static int fn=1;

fn=fn*n;

printf("\t%d",fn);

}

main()

{ int i;

for(i=2;i<=5;i++) fun(i);

}

【运行结果】

2 6 24 120

4.【程序】

void select(int max,int a[],int n)

{ int i;

max=a[0];

for(i=1;i

if(a[i]>max) max=a[i];

}

main()

{ int i,max=10,a[10]={10,20,30,40,50,60,70,80,90,100}; select(max,a,10);

printf("\nmax=%d",max);

}

【运行结果】

max=10

5.【程序】写出输入84时程序运行结果

#include

main()

{ int score;

printf("\n input score: ");

scanf("%d",&score);

switch(score/10)

{ case 10:

case 9: printf("\n 优");

case 8: printf("\n 良");

case 7:

case 6: printf("\n 及格");

default: printf("\n 不及格");

} }

【运行结果】

及格

不及格

五、编程题(本题共1题,10分)

已知每张选票上按序印有候选人姓名,要求选民从中勾选3人,多选或少选都视为废票不予统计,统计选票时输入数据的格式为长度为5的由0和1组成的字符串:“1”表示对相应候选人被选中,“0”

表示未选中,如“01011”表示第2、4、5个候选人被选中。

请编写程序读入每张选票的投票信息,若为有效选票则统计到结果中,当输入空串时结束,输出以下统计结果: 1. 总有效投票数。2. 每个候选人姓名及投票数。

提示:候选人信息已保存在以下的数组中,无须再从键盘输入。

struct item /*保存候选人及得票信息的结构体*/

{ char name[20]; /*候选人姓名*/

int count; /*得票数*/

} mans[5]={{"name1",0},{"name2",0},{"name3",0},{"name4",0},{"name5",0}};

#include

main()

{ char str[6];

int i,flag,count=0;

gets(str);

while(str[0]!='\0')

{ for(flag=0,i=0;i<6;i++)

if(str[i]=='1') flag++;

if(flag==3)

{ count++;

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

if(str[i]=='1') mans[i].count++;

}

gets(str);

}

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

for(i=0;i<5;i++) printf("%s=%d\n",mans[i].name,mans[i].count); }

第二部分软件工程概论部分100分

一、单项选择题(共18小题,每题2分,共36分)

以下每小题列出的四个备选答案中只有一个符合题目要求,请将正确答案填入“单项选择题答题表”

对应的格中,未填入答题表,错选或多选均不得分。

1.软件开发瀑布模型的各个阶段依次是 A

A. 分析→设计→编码→测试→维护

B. 设计→定义→开发→测试→维护

C. 分析→定义→设计→编码→测试

D. 设计→分析→编码→测试→维护

2.软件可行性研究一般不考虑 D

A. 是否有足够的人员和相关的技术的来支持系统开发

B. 是否有足够的工具和相关的技术的来支持系统开发

C. 待开发软件是否有市场、经济上是否合算

D. 待开发软件是由会有质量问题

3.需求分析阶段的主要任务是确定 D

A. 软件开发方法

B. 软件的总体结构

C. 软件开发的费用

D. 软件系统的功能

4.结构化分析方法(SA)的主要特点是 A

A. 面向数据流自顶向下,逐步求精的方法

B. 由内向外进行分析的方法

C. 先局部后整体的分析方法

D. 使用IPO图形工具分析的方法

5.软件总体设计阶段的任务不包括

... C

A. 设计软件的模块结构

B. 定义接口并建立数据结构

C. 模块设计

D. 生成模块设计规格说明

6.数据流图中的每个加工至少需要 B

A. 一个输入流

B. 一个输出流和一个输入流

C. 一个输入或输出流

D. 一个输出流

7.以下叙述中模块内聚性最高的是 D

A. 逻辑内聚

B. 时间内聚

C. 通信内聚

D. 功能内聚

8.( C )和数据流图共同构成系统的逻辑模型,没有它数据流图就不完整。

A. 系统流程图

B. E-R图

C. 数据字典

D. 层次方框图

9.在详细设计阶段经常采用的图形工具包括 D

A. PAD图

B. 程序流程图

C. N-S图

D. 以上都是

10.Jackson设计方法是一种面向( C )的软件设计方法。

A. 对象

B. 数据流

C. 数据结构

D. 控制结构

11.按照总体设计中启发式规则,模块的作用域和控制域之间的关系应满足 A

A. 模块的作用域应在模块的控制域之间

B. 模块的控制域应在模块的控制域之间

C. 模块的控制域与模块的作用域相互独立

D. 以上说法都不对

12.一般来说,在软件生命周期中成本最高的阶段是 D

A. 详细设计

B. 软件编码

C. 软件测试

D. 软件维护

13.模块间耦合程度由低到高的顺序是 B

A. 控制耦合<特征耦合<公共耦合<内容耦合<数据耦合

B. 数据耦合<控制耦合<特征耦合<公共耦合<内容耦合

C. 数据耦合<特征耦合<控制耦合<公共耦合<内容耦合

D. 内容耦合<数据耦合<控制耦合<特征耦合<公共耦合

14.常用的黑盒测试方法不包括 C

A. 等价类划分

B. 边界值分析

C. 逻辑覆盖

D. 错误推测

15.软件维护阶段的四类维护活动是 A

A. 改正性维护,适应性维护,完善性维护和预防性维护

B. 适应性维护,完善性维护,抢救性维护和辅助性维护

C. 改正性维护,适应性维护,完善性维护和辅助性维护

D. 适应性维护,完善性维护,抢救性维护和预防性维护

16.因计算机软硬件环境的变化而作出的修改软件的过程属于B

A. 改正性维护

B. 适应性维护

C. 完整性维护

D. 预防性维护

17.逻辑覆盖方法中,覆盖程度最强的是 A

A. 路径覆盖

B. 条件覆盖

C. 判定条件覆盖

D. 语句覆盖

18.以下( B )语句不属于面向对象的语言

A. Java

B. C

C. C++

D. C#

二、填空题(共9题,每空1分,共10分)

1.软件工程方法学主要包括3个要素:方法、工具和过程。

2.UML中定义9种图用于从不同角度描述系统,其中描述系统物理实现和配置的图有:构件图和部署图。

3.面向对象程序设计以对象为基本的逻辑构件,通过继承机制实现重用性。

4.数据流图可分为变换型数据流图和事务型数据流图两大类。

5.一个模块直接调用下级模块的个数称为扇出。

6.从工程管理的角度看,软件设计可分为总体设计和详细设计两大步骤。

7.“OOD”的含义是面向对象设计。

8.相同的操作用于不同的对象上可获得不同的结果,这种现象称为多态性。

9.结构化程序设计中程序的三种基本结构是:顺序、选择、循环。

三、判断题(共15题,每题1分,共15分)判断下列各题是否正确,正确的划√,错误的划×

1.HIPO图是面向对象设计工具之一。(×)

2.测试过程没有发现任何错误,也不能说明软件没有错误。(√)

3.数据库设计属于软件概要设计阶段。(×)

4.软件就是完成特定功能的程序的集合。(×)

5.对象之间的通信仅通过消息传递机制。(√)

6.软件可行新分析研究的目的是最小的代价在尽可能的时间内确定该软件项目是否能够开发,是否值得

去开发。(√)

7.集成测试多用于“灰盒”测试技术,即它即应用黑盒测试技术也是用白盒测试技术。(√)

8.瀑布模型可以有效地用户需求的变化,因此适合大型的系统。(×)

9.结构化程序设计要求每个模块具有单入口,单出口。(√)

10.将软件系统划分为模块时,应尽量做到高内聚低耦合。(√)

11.详细设计的结构基本决定了最终程序的质量。(√)

12.验收测试是由用户依据软件需求规格说明书单独进行的。(√)

13.运用面向对象方法开发的软件一般是由很多较小的对象组成,从而降低了软件产品的复杂性,使得开

发和维护更为简单有效。(√)

14.瀑布模型在实际的项目中严格顺序执行就可以成功。(×)

15.从模块独立性的角度,应尽量使用内容耦合。(×)

四、名词解释题(共4小题,共9分)

1.软件生命周期(3分)

一个软件从定义,开发,使用和维护直至最后被废弃要经历的漫长时期。

2.模块独立性(2分)

模块独立性是指每个模块只完成系统要求的独立的子功能,并且与其他模块的联系最少,且接口简单。

3.白盒测试(2分)

又称结构测试、逻辑驱动测试或基于程序的测试,它依赖于对程序内部结构的严密检验,针对特定条件设计测试用例,对软件的逻辑路径进行测试。

4.对象(2分)

对象是指客观事物或概念的抽象描述,对象不仅能表示具体的实体,也能表示抽象的规则、计划、事件。

五、简单题(共3小题,每题5分,共15分)

1.简述面向对象开发方法的优点

①与人类习惯的思维方式一致

②软件稳定性好

③可重用性好

④适合开发大型软件产品

⑤可维护性好

2.决定软件可维护性的因素有哪些?

①可理解性

②可测试性

③可修改性

④可移植性

⑤可重用性

3.简述快速原型模型及其特点

原型模型是一个快速开发的过程。首先和用户沟通进行主要功能的需求分析和快速设计,然后建立一个原型模型,再请用户进行评价和反馈。开发人员根据用户的反馈进一步细化需求,改进原型系统的设计,如此反复直至用户满意。

特点:

优点:

(1) 出品速度快。(2) 逐步求精。(3) 开发阶段迭代。

缺点:

(1) 实现过程中不应有的折衷方案。

(2) 开发者急于完成原型而忽略了整体设计和可维护性;

(3) 用户的参与过多也造成了软件开发管理的混乱。

六、应用题(共15分)

某教学管理信息系统中要求用户输入成绩,成绩限制为0到100之间的整数,小数或其他字符无效。

如果输入成绩不在此范围内,则显示“输入错误”,输入的成绩小于60,则显示“不及格”,大于等于60显示“及格”。

要求:分别用(1)等价类划分。

(2)边界值分析法设计测试用例,以测试程序的“输入成绩”功能。

(1)依据题目,划分的等价类为:

专升本大学英语真题2014年

2014 年福建省普通高职(专科)专升本招生统一考试 大学英语试卷 (考试时间120 分钟,满分150 分) 考生答题注意事项: 1、答题前,考生务必在试题卷、答题卡规定的地方填写自己的准考证号、姓名(答题卡 背面只需填写姓名)。考生要认真核对答题卡粘贴的条形码的“准考证号、姓名”与考生本人准考证号、姓名是否一致。 2、本试卷分为两部分,第一部分为选择理,第二部分为非选择题。选择题每小题选 出答案后,用2B铅笔把答题卡上对应题目的答案标号涂黑。如需改动,用橡皮擦干净后, 再选涂其他答案标号。非选择题用0.5毫米黑色签字笔并严格按照题号顺序在答题卡上书写作答,在试题卷上作答无效。 3、考试结束后,考生必须将试题卷和答题卡一并交回。 4、合理安排答题空间,超出答题区域无效。 第一部分选择题 I . Vocabulary and Structure (45 points,1.5 for each) Directions:In this section, there are 30 incomplete sentences or dialogues. For each of them there are 4 choices marked A, B, C and D. Choose the ONE that best completes the sentence or the dialogue. Then mark the corresponding letter on the ANSWER SHEET. 1. —Could you help me? —__________ A. Good idea B. No problem C. Not at all D. It doesn’t matter 2. He was__________sad that tears came to his eyes suddenly. A. very B. so C. too D. much 3. __________I have a look at your ID card? We have to check your information. A. May B. Must C. Need D. Should 4. Mr. Black is looking forward to__________from his son working abroad. A. hear B. heard C. hears D. hearing 5. There are a lot of parks in my town. Most of__________are beautiful. A. it B. they C. them D. us 6. The poor old man has little money. He can not__________a warm sweater. A. effort B. effect C. afford D. affect 7. Would you like__________cup of tea? A. other B. the other C. another D. others 8. —Thank you very much for helping me with my English.—__________. A. Don’t mind B. That’s all C. Don’t mention it D. That’s right 9. I will tell you as soon as she __________. A. will come back B. came back C. come back D. comes back 10. The American twin sisters are new students in our school. __________of them can speak Chinese very well. A. Neither B. None C. No one D. All 11. There must be__________wrong with my TV set. It doesn’t work. A. nothing B. everything C. anything D. something 12. Having lived here for nearly one year, I have__________the customs in the area now. A. used to B. got used to C. got use to D. been use to

《专升本-英语》模拟试题及参考答案

2018年成人高考专升本英语模拟卷 第1卷(选择题,共125分) I.Phonetics ( 5 points) Directions:In each of the following groups of words, there are four underlined letters or letter combinations marked A, B, C and D. Compare the underlined parts and iden-tify the one that is different from the others in pronunciation. Mark your answerby blackening the corresponding letter on the Answer Sheet. 1. A. penalty B. moment C. quarrel D. absent 2. A. sympathy B. material C. courage D. analysis 3. A. starvation B. suggestion C. satisfaction D. situation 4. A. donkey B. turkey C. money D. obey 5. A. revise B. consist C. advertise D. visit Ⅱ. Vocabulary and Structure ( 15 points ) Directions : There are 15 incomplete sentences in this section. For each sentence there are four choices marked A, B, C and D. Choose one answer that best completes the sentence and blacken the corresponding letter on the Answer Sheet. 6. Jonathan and Joe left the house to go for__ after supper.() A. walk B. the walk C. wallks D. a walk 7. He pointed at the new car and asked, "___ is it? Have you ever seen it before?"() A. Why B. Where C. Who D. Whose 8. My father asked __ to help with his work.() A. I and Tom B. Tom and me C. me and Tom D. Tom and I 9. Nowadays little knowledge __ to be a dangerous thing.() A. seem B. seemed C. does seem D. do seem 10. If their marketing team succeeds, they __ their profits by 20 percent.() A. will increase B. would be increasing C. will have increased D. would have been increasing 11. You'd better take these documents with you __ you need them for the meeting.() A. unless B. in case C. until D. so that 12. I haven' t been to a pop festival before and Mike hasn' t __() A. too B. as well C. neither D. either 13.__ is known to the world, Mark Twain was a great American writer.() A. As B. Once C. That D. It 14. John complained to the bookseller that there were several pages______ in the dictionary.() A. lacking B. losing C. missing D. dropping 15. Not until the game had begun __ at the sports ground.() A. should he have arrived B. would he have arrived C. did he arrive D. had he arrived 16. Moviegoers know that many special effects are created by computers, they often don' tknow is that these scenes still require a lot of work.() A. That B. Whom C. What D. How 17. The president is to give a formal __ at the opening ceremony.() A. speech B. debate C. discussion D. argument 18. When I am confronted with such questions, my mind goes __, and I can hardly remember myown date of

2014年专升本英语试题及答案

2014年英语试题 Part I Listening Comprehension (20 points, 1 point each) Section A Directions: In this section, you will hear 7 short conversations and 2 long conversations. At the end of each conversation, one or more questions will be asked about what was said. Both the conversation and the questions will be spoken only once. After each question there will be a pause. During the pause, you must read the four choices marked A), B), C) and D) , and decide which is the best answer. 1. A) To the bank. B) To a book store. C) To a shoe store. D) To the grocer’s. 2. A) Near the train station. B) In the countryside. C) In the city. D) Near the workplace 3. A) the choice of courses B) a day course C) an evening course D) their

专升本数学模拟试题(一)

一东北数学试题(一) 一、选择题:本大题共10个小题,每小题4分,共40分。在每小题给出的四个选项中,只有一项是符合题目要求的,把所选项前的字母填在题后的括号内。 1.设,则等于() A. B. C. D. 2. 已知为常数,,则等于() A. B. C. D. 0 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. 0.3 B. 0.4 C. 0.5 D.0.6 二、填空题:本大题共10个小题,每小题4分,共40分,把答案填在题中横线上。 11.设,则 . 12. . 13.设,则 . 14.函数的驻点为 . 15.设,则 . 16. .

17.设,则 . 18.若,则 . 19.已知,则 . 20.已知,且都存在,则 . 三、解答题:本大题共8个小题,共70分。解答应写出推理、演算步骤。 21.(本题满分8分)计算. 22. (本题满分8分)设函数,求. 23. (本题满分8分)计算. 24. (本题满分8分)甲、乙二人单独译出某密码的概率分别为0.6.和

0.8,求此密码被破译的概率. 25. (本题满分8分)计算. 26.(本题满分10分)设函数在点处取得极小值-1,且点(0,1)为该函数曲线的拐点,试求常数. 27.(本题满分10分)设函数是由方程所确定的隐函数,求函数曲线,过点(0,1)的切线方程.

大学英语2复习题(专升本)

《大学英语》复习题(专升本) 一、单项填空 1. ---Have you heard the latest news? ---No, What ________? A. is it B. is there C. are they D. are those 2. Some pre-school children go to a day care center, __________ they learn simple games and songs. A. then B. there C. while D. where 3. Does this meal cost $50? I __________ something far better than this! A. prefer B. expect C. suggest D. suppose 4. ---Can you read the sign, sir? No smoking allowed in the lift! ---__________________. A. Never mind B. Don’t mention it C. Sure, I don’t smoke D. Pardon me 5.---The last one __________________ pays the meal. ---Agreed! A.arrived B.arrives C.to arrive D.arriving 6.---How’s your tour ar ound the North Lake? Is it beautiful? ---It ________ be, but it is now heavily polluted. A.will B.would C.should D.must 7.We all know that, __________, the situation will get worse. A.not if dealt carefully with B.if not carefully dealt with C.if dealt not carefully with D.not if carefully dealt with 8.I smell something __________ in the kitchen. Can I call you back in a minute? A.burning B.burnt C.being burnt D.to be burnt 9.Between the two generations, it is often not their age, _________ their education that causes misunderstanding. A.like B.as C.or D.but 10.The manager suggested an earlier date ____________ the meeting. A.on B.for C.about D.with 二、完形填空 阅读下面短文,从短文后所给各题的四个选项(A、B、C和D)中,选出可以填入空白处的

湖北省07年9月专升本英语试卷

历年真题:湖北专升本英语试卷 2007年09月01日星期六 7:00 A.M. Part Ⅰ . Structure (1 point×20=20 points) Directions: This part is to test your ability to construct grammatically correct sentences. It consists of 2 sections. Section A Directions: In this section, there are 10 incomplete sentences .You are required to complete each one by deciding on the most appropriate word or words from the 4choices marked A, B, C and D. Write your answers on the ANSWER SHEET. 1. This year the factory turned ____twice as many bicycles as it did last year. A. down B. off C. to D. out 2. The taxi is _____in this little town, but most people seem to prefer the bus. A. valuable B. available C. acceptable D. considerable 3.____had professor Smirh finished his report when stormy applause broke out. A. scarcely B. no sooner C. Never D. Seldom 4. We don't agree with his view ____there is no advantage in introducing the new method. A. which B. that C. what D. when 5. The noise around was terrible, but they had to ____it A. put up with B. keep up with C. come up with D. catch up with 6. He prefers to read books ____watch TV. A. other than B. better than C. rather than D. more than 7. I'm pleased with ____ you have told me. A. that B. all that C. all what D. which 8. The prices of the products have been ____ steadily in the past few years. A. risen B. raised C. arisen D. aroused 9.There isn’t ____ good news in today's newspaper. A. many B. much C. little D. a few 10. When ____ ,the novel will become one of the best-sellers of the year. A.publishing B. being published C. have published D. published Section B Directions: There are 10 incomplete statements here. You should fill in each black with the proper form of the word given in the brackets. Write the word or words in the corresponding space on the ANSWER SHEET. 11. The France have put forward a (propose) ___________ for a joint project. 12. Without a protection program, experts feat that lowland forests are likely (vanish) _________ within five years. 13. Many a man ____________ (think) life is meaningless without a purpose.

成考专升本考试试题及答案一

Ⅱ. Vocabulary and Structure (40 points) Directions: There are 40 incomplete sentences in this section. For each sentence there are four choices ma rked A, B, C and D. Choose one answer that best completes the sentence and blacken the cor responding letter on the Answer Sheet. 11. Today is Jenny’s wedding day. She _______ to Thomas. A. just has got married B. has just married C. was just married D. has just got married 正确答案是:D 您的答案是: -------------------------------------------------------------------------------- 12. Every officer and every soldier _______ obey the rules. A. had to B. have to C. has to D. must have to 正确答案是:C 您的答案是: -------------------------------------------------------------------------------- 13. Rarely _______ so difficult a problem. A. she could have faced with B. could have she faced with C. she could have been faced with D. could she have been faced with 正确答案是:D 您的答案是: --------------------------------------------------------------------------------

专升本大学英语试题及答案

1(2分)、 2 Reading ____ the mind only with materials of knowledge; it is thinking that makes what we read ours. A、 rectifies B、 prolongs C、 minimizes D、 furnishes 参考答案:D 2(2分)、 2 I fell and hurt myself while I ________ basketball yesterday. A、 was playing B、 am playing C、 play D、 played 参考答案:A 3(2分)、 2 We’ve missed the last bus. I’m afraid we have no ________ but to take a taxi. A、 way B、 choice C、 possibility D、 selection 参考答案:B 4(2分)、 Measles(麻疹) ________ a long time to get over. A、 spend B、

C、 take D、 takes 参考答案:D 5(2分)、 2 He asked the waiter ________ the bill. A、 on B、 of C、 for D、 after 参考答案:C 6(2分)、 When you go to the doctor he asks you to describe your ____ so that he can make a diagnosis (诊断). A、 indications B、 signs C、 symbols D、 symptoms 参考答案:D 7(2分)、 2 I forgot to return the book to you yesterday. So I _____________today. A、 might do it B、 must do it C、 had to do it D、 must have to do it 参考答案:B 8(2分)、

英语专升本模拟试题

中南林业科技大学 英语试卷(考试时间150分钟) Ⅰ. Phonetics (5 points) Directions:In each of the following groups of words, there are four underlined letter combinations marked A,B,C and D. Compare the underlined parts and identify the one that is different from the others in pronunciation. Mark your answer by blackening the corresponding letter on the Answer Sheet. ()1. A. club B. tomb C. comb D. climb ()2. A. each B. peach C. break D. deal ()3. A. exhaust B. exercise C. exam D. exact ()4. A. glove B. stone C. globe D. spoke ()5. A. honor B. hopeless C. holiday D. honest . Vocabulary and Structure (15 points) Directions:There are 15 incomplete sentences in this section. For each sentence choices marked A,B,C and D. Choose one answer that best completes the sentence and blacken the corresponding letter on the Answer Sheet. ()6. Today is Jenny’s wedding day. She _____ to Thomas. A.just has got married B. has just married C. was just married D. has just got married ()7. China is famous_____ the Great Wall. A. about B. for C. as D. of ()8. Two nuclear power stations _____ in the past ten years. A. are built B. have been built C. would be built D. are building ()9.The little boy can’t tell _____. A. whose is that watch B. whose that watch is C. whose watch is that D. whose watch is ()10. With regarding to this model of color TV sets,the home-made ones are by no means_____ those made in Japan. A.less inferior to B.less inferior than C.inferior than D.inferior to ()11. —Do you hear someone knocking at the door? —Yes, I did. I heard him _____ three times. A. knocking B. knocked C. being knocking D. knock ()12. After running for nearly half an hour, I was _____. A. out of place B. out of control C. out of breath D. out of practice ()13. If he had listened to me,he_____ earlier. A.might arrive B.had arrived C.might be arriving D.might have arrived ()14. I am very _____ to you for your help. A. grateful B. agreeable C. pleased D. thanks

2007年陕西省专升本语文真题

2007年陕西省普通高等学校选拔 优秀专科生进入本科阶段考试试题 大学语文 一、单项选择题:本大题共16小题,每小题1分,共16分。在每小题四个备选答案中选出一个正确答案。 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.欧阳修 11.下列诗中属于五言律待的是( ) A.《关山月》 B.《饮酒》 C.《山居秋暝》 D.《饮马长城窟行》 12.下列作品集属于闻一多的是( ) A.《红烛》 B.《繁星》 C.《灾难的岁月》 D.《女神》 13.兼具诗歌与散文特点的文学体裁是( ) A.诗 B.词 C.曲 D.赋 14.下列选项中名词活用为动词的一项是( ) A.蚕食诸侯 B.中石没镞 C.有衣者亦衣 D.岂吾相不当侯邪 15.成语“分崩离析”源自( )

专升本大学英语模拟试题(二)#精选.

2017年专升本大学英语模拟试题(二) I.Vocabulary and Structure Directions: There are 45 incomplete sentences in this section. For each sentence there are four choices marked A, B, C and D. Choose one answer that best completes the sentence and blacken the corresponding letter on the Answer Sheet. 1. Their idea is ______ to all of us and you do not need to tell us more about it. A. apparent B. appearing C. approaching D. apart 2. Please do not ______ when somebody else is talking. A. intend B. interpret C. interrupt D. invest 3 It has been about 7 years since they __________. A. got married B. got marry C. get marry D. have married 4 Everyone, as a citizen, _______do his best for the economic development of his own country. A. would B. might C. should D. had to 5 _______ breaks the law must be punished. A. Who B. However he C. Whoever D. No matter who 6 This is the air conditioner ________ we have had so much trouble. A. at which B. of which C. to which D. with which 7. _______ we know, there are 107 elements found in nature. A. As long as B. Just as C. So far as D. For all 8. There ______ not only the earth but also eight other planes in the solar system A. are B. were C. is D. was 9 Not until the mid-nineteenth century _______ achieve recognition A. had EL Greco’s work C. did EL Greco’s work B. EL Greco’s work D. EL Greco’s work did 10. He is one of the best players in the game, ________? A. is he B. doesn’t he C. does he D. isn’t he 11. When you go to a foreign country, you must _________yourself to the manners and customs there. A. admire B. adopt C. adapt D. admit 12. We regret _______ you that you are to be dismissed next week. A. to have informed C. to inform B. informing D. having informed 13. There were one thousand _______ at the national entrance examinations last year. A. applicants B. participants C. assistants D. candidates 14 Plenty of hard work _______ the process. A. accompany B. is accompanied C. accompanies D. are accompanied 15 They talked in whispers, but stil l I couldn’t help but _______ their conversation. A. overhear B. to overhear C. overhearing D. overheard 16 The students expected there ________ more reviewing classes before the final test. A. is B. being C. have D. to be 17. Since it rained yesterday and the ground is still ______ today, you can not sit on the ground. A. damp B. moist C. rainy D. humid 18 But for the heavy rain, we _______.

成人高考专升本模拟试卷

成人高考专升本模拟试卷 I.Phonetics (5 points) Directions:In each of the following groups of words,there are four underlined letters or letter combinations marked A,B,C and D. Compare the underlined parts and identify the one that is different from the others in pronunciation. Mark your answer by blackening the corresponding letter on ANSWER SHEET ( )1. A.horrible B.horse C.sort D.northern ( )2. A.hospital B.honour C.hotel D.however ( )3. A.manage B.matter C.madam D.many ( )4. A.gather https://www.docsj.com/doc/b318514238.html,ernment C.geography D.garden ( )5. A. bathroom B. eleventh C. breathe D. maths II. Vocabulary and Structure[15 points] ( )6. They all look so happy. They_____ have succeeded in persuading their teacher. A. can B. will C. must D. would ( )7. A fight broke out among the football fans and soon it went_____ control. A. under B. beyond C. above D. over ( )8. Not only you but also I __________ mistaken. A. am B.had C.were D.have ( )9. Hard as he worked from day till night,_______ he couldn't make enough money to support his family. A.and B.but C.therefore D. 不填 ( )10.______________ George this morning? -Not yet,but he is sure to be here before noon. A. Will you see B. Did you see C. Do you see D. Have you seen

07年,陕西省专升本语文真题

2007年陕西省普通高等学校选拔 专升本考试 大学语文 一、单项选择题:本大题共16小题,每小题1分,共16分。在每小题四个备选答案中选出一个正确答案。 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.欧阳修 11.下列诗中属于五言律待的是( ) A.《关山月》 B.《饮酒》 C.《山居秋暝》 D.《饮马长城窟行》 12.下列作品集属于闻一多的是( ) A.《红烛》 B.《繁星》 C.《灾难的岁月》 D.《女神》 13.兼具诗歌与散文特点的文学体裁是( ) A.诗 B.词 C.曲 D.赋 14.下列选项中名词活用为动词的一项是( ) A.蚕食诸侯 B.中石没镞 C.有衣者亦衣 D.岂吾相不当侯邪 15.成语“分崩离析”源自( )

相关文档
相关文档 最新文档