B&&C>A||AB的值是.5.以下程序的运行结果是。main()" />
文档库 最新最全的文档下载
当前位置:文档库 › 江苏省五年一贯制专转本《C语言程序设计》模拟试卷二(晓庄)

江苏省五年一贯制专转本《C语言程序设计》模拟试卷二(晓庄)

江苏省五年一贯制专转本《C语言程序设计》模拟试卷二(晓庄)
江苏省五年一贯制专转本《C语言程序设计》模拟试卷二(晓庄)

江苏省五年一贯制专转本

《C语言程序设计》模拟试卷二(晓庄)

一、填空題(每题2分,共16分)

1.整型常量默认类型是、实型默认类型是、函数默认类型是

2. 若k为 int整型变量且赋值7,请写出赋值表达式 k *= k + 3的运算结果 .

3. 设x,y,z均为int型变量,请写出描述"x,y中有一个为负数"的表达式:

4. 已知A=7.5,B=2,C=3.6,表达式A>B&&C>A || AB的值是 .

5. 以下程序的运行结果是。

main()

{ printf("%s,%5.3s","computer","computer"); }

6. 设y为int型变量,请写出描述"y是奇数"的表达式

7. 若a是int型变量,则下面表达式的值为 ,a的值为。

(a=4*5,a+6),a++

8.若有定义:int a=10 ,b=9 ,c=8;执行下列语句后,变量b中的值是。

c=(a-=(b-5)); c=(a%11)+(b=3);

二、单项选择题(每题2分,共40分)

1.下列四组字符串中都可以用作C语言程序标识符的一组是____。

? A) print B) i\am C) Pxq D) str_l

??? _3d one_half My->book Cpp

?? oodb start$it line# pow

??? aBc 3pai His.age while

2.下列关于C语言的叙述错误的是____。

A) 大写字母和小写字母的意义相同

B) 不同类型的变量可以在一个表达式中

C) 在赋值表达式中等号(=)左边的变量和右边的值可以是不同类型

D) 同一个运算符号在不同的场合可以有不同的含义

3.已知 long i=65539;执行语句printf("%d",i);屏幕显示____。

A) 65539 B) -3 C) 3 D) 程序不能执行

4.字符g赋给字符变量c,正确的表达式是____。

A) c=\147 B) c="\147" C) c='\147' D) c='0147'

5.已知:char a;int b;float c;执行语句"c=a+b+c;"后,变量c的数据类型是____。

A) int B) char C) float D) double

6.温度华氏和摄氏的关系是: C=5/9 (F-32)。已知:float C,F;由华氏求摄氏的正确的赋值表达式是____。

A) C=5/9(F-32) B) C=5*(F-32)/9

C) C=5/9*(F-32) D) 三个表达式都正确

7.逗号表达式"(a=3*5,a*4),a+15"的值是____。

A) 15 B) 60 C) 30 D) 不确定

8.已知int i=10;表达式"20-0<=i<=9"的值是____。

A) 0 B) 1 C) 19 D) 20

9.在下列结论中,只有一个是错误的,它是____。

A) C语言允许函数的递归调用

B) C语言中的continue语句,可以通过改变程序的结构而省略

C) 有些递归程序是不能用非递归算法实现的

D) C语言中不允许在函数中再定义函数

10.下面程序可能的输出结果是____。

main()

{ int a,b;

scanf("%2d%3d",&a,&b);

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

}

A) a=12 b=34 B) a=123 b=45

C) a=12 b=345 D) 语句有错误

11.以下程序段的输出结果是____。

int a=10,b=50,c=30;

if(a>b) a=b;b=c;c=a;

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

A) a=10 b=50 c=10 B) a=10 b=30 c=10

C) a=50 b=30 c=10 D) a=50 b=30 c=50

12.以下程序的输出结果是____。

main()

{ int a=0,b=1,c=0,d=20;

if(a) d=d-10;

else if(!b)

if(!c) d=15;

else d=25;

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

}

A) d=10 B) d=15 C) d=20 D) d=25

13.下面程序的输出结果为____。

main()

{ int a=1,b=0;

switch(a)

{ case 1: switch (b)

{ case 0: printf("**0**"); break;

case 1: printf("**1**"); break;

}

case 2: printf("**2**"); break;

}

}

A) **0** B) **0****2** C) **0****1****2** D) 有语法错误

14.下面程序的输出是____。

main()

{ int num=0;

while(num<=2)

{ num++;

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

}

}

A) 1 B) 1 C) 1 D) 1

2 2 2

3 3

4

15.下面程序的输出结果是____。

#include

#include

main( )

{ char str[100] ="How do you do";

strcpy( str + strlen(str)/2, "es she");

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

}

A) How do you do B) es she

C) How are you D) How does she

16.有以下程序

main()

{char a[]={’a’,’b’,’c’,’d’,’e’,’f’,’g’,’h’,’\0’}; int i,j;

i=sizeof(a); j=strlen(a);

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

}

程序运行后的输出结果是______。

A) 9,9 B) 8,9 C) 1,8 D) 9,8

17.以下程序中的函数reverse的功能是将a所指数组中的内容进行逆置。void reverse(int a[],int n)

{ int i,t;

for(i=0;i

{t=a[i];a[i]=a[n-1-i];a[n-1-i]=t;}

}

main()

{int b[10]={1,2,3,4,5,6,7,8,9,10}; int i,s=0;

reverse(b,8);

for(i=6;i<10;i++) s+=b[i];

printf("%d ",s);

}

程序运行后的输出结果是______。

A) 22 B) 10 C) 34 D) 30

18.以下程序的输出结果是

A)0 B)29 C)31 D)无定值

fun(int x,int y,int z)

{z=x*x+y*y;}

main()

{int a=31;

fun(5,2,a);

printf(“%d”,a);

}

19.有以下程序

#include

main()

{ int i,j,m=55;

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

for(j=3;j<=i;j++) m=m%j;

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

}

程序的运行结果是。

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

20.有以下程序

void f(int v, int w)

{ int t;

t=v;v=w;w=t;

}

main()

{ int x=1,y=3,z=2;

if(x>y) f(x,y);

else if(y>z) f(y,z);

else f(x,z);

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

}

执行后输出结果是。

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

三、程序填空(每题4分,共16分)

1.下面程序的功能是输出100以内的个位数为6、且能被3整除的所有数。main()

{ int i,j;

for(i=0;;i++)

{ j=i*10+6;

if( ) countinue;

printf("%d",j);

}

}

2.下面程序的功能是用辗转相除法求两个正整数m和n的最大公约数。hcf(int m,int n)

{ int r;

if(m

{ r=m;

①;

n=r;

}

r=m%n;

while( ②)

{ m=n;

n=r;

r=m%n;

}

③;

}

3.下面程序的功能是删除字符串s中的空格。

#include

main()

{ char *s="Beijing ligong daxue";

int i,j;

for(i=j=0;s[i]!='\0';i++)

if(s[i]!= ' ') ①;

else ②;

s[j]= '\0';

printf("%s",s);

}

4.下面程序的功能是显示具有n个元素的数组s中的最大元素。#define N 20

main()

{ int i,a[N];

for(i=0;i

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

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

}

fmax(int s[],int n)

{ int k,p;

for(p=0,k=p;p

if(s[p]>s[k]) ② ;

return(k);

}

四、写出以下程序运行结果(每题3分,共12分)

阅读下列程序,将输出结果写到各题右侧的空白处。

1.main()

{int x=15;

while(x<20)

{x++;

if(x%3!=0){x++;break;}

else continue;

}

printf(″%d\n″,x);

}

2.

fun(int a[],int i,int j)

{int t;

if(i

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

i++;j--;

fun(a,i,j);

}

}

main()

{int x[]={2,4,6},i;

fun(x,0,2);

for(i=0;i<3;i++) printf(″%2d″,x[i]); printf(″\n″);

}

3.程序运行时,输入一个整数5

main()

{int a,b[10],c,i=0;

printf(″输入一个整数\n″);

scanf(″%d″,&a);

while(a!=0)

{c=a%2;

a=a/2;

b[i]=c;

i++;

}

for(;i>0;i--)printf(″%d″,b[i-1]);

}

4. 下面程序的运行结果是。 #include

main()

{ int i,j=4;

for(i=j;i<=2*j;i++)

switch(i%j)

{ case 0:

case 1:printf(“*”);break; case 2:printf(“#”);

}

}

五、编程题(每题8分,共16分)

1. 利用2π= (7)

656543432122??????=×…的前100项之积计算π的值。 2. 已知数组声明为”int a[10] = {0, 10, 20, 30, 40, 50, 60, 70, 80, 90};”, 10个数组元素是按升序排列的(假设没有重复值)。输入一个整数n, 如果没有与n 相等的数组元素, 输出 - 1; 否则, 删除与n 相等的数组元素,输出数组元素,要求剩余的九个数组元素仍按升序排列。

五年一贯制专转本英语考纲

“专转本”英语考试大纲 考试内容: 专转本考试包括五个部分:阅读理解、词语用法与语法结构、完形填空、翻译、作文,难易程度为公共外语等级考试的一级到二级间即中考英语水平。 试卷满分100分。考试时间为90分钟。 第Ⅰ卷(客观题):(65分) 第一部分:阅读理解(Part Ⅰ:Reading Comprehension) 第二部分:词语用法和语法结构(Part Ⅱ:Vocabulary and Structure) 第三部分:完形填空(Part Ⅲ:Cloze) 第Ⅱ卷(主观题):(35分) 第四部分:翻译(Part Ⅳ:Translation) 第五部分:写作(Part Ⅴ:Writing) 第一部分:阅读理解(Part Ⅰ:Reading Comprehension):(共15题,每小题2分,共30分) 要求考生阅读3篇短文,每篇阅读量不超过200词。每篇短文后有5个问题,考生应根据文章内容从每题四个选择项中选出一个最佳答案。 选材的原则是: 1、题材广泛,可以包括人物传记、社会、文化、日常知识、科普常识等,但是所涉及的背景知识应能为学生所理解; 2、体裁多样,可以包括叙述文、说明文、议论文等; 3、文章的语言难度中等,无法猜测而又影响理解的关键词会用汉语注明词义。 阅读理解部分主要测试下述能力: 1、掌握所读材料的主旨和大意; 2、了解说明主旨和大意的事实和细节; 3、既理解字面的意思,也能根据所读材料进行一定的判断和推论; 4、既理解个别句子的意义,也理解上下文的逻辑关系。 阅读理解部分的目的是测试学生通过阅读获取信息的能力,既要求准确,也要求有一定速度。 第二部分:词语用法和语法结构(Part Ⅱ:Vocabulary and Structure):(共15题,每小题1分,共30分)题目为词和短语的用法和语法结构。要求考生从每题四个选择项中选出一个最佳答案。试题主要相关于谓语动词的时态语态、非谓语动词、it作形式主语或形式宾语、强调句、倒装句、从句引导词、虚拟语气等。 词语用法和语法结构部分的目的是测试学生运用词汇、短语及语法结构的能力。 第三部分:完形填空(Part Ⅲ:Cloze):(共10题,每小题2分,共20分) 在一篇或两篇题材熟悉、难度适中的短文(约100词)中留有10个空白,每个空白为一题,每题有四个选择项,要求考生在全面理解内容的基础上选择一个最佳答案,使短文的意思和结构恢复完整。填空的词项包括结构词和实译词。完形填空部分的目的是测试学生综合运用语言的能力,包括语法概念、词汇运用、篇章结构的理解等综合能力。 第四部分:翻译(Part Ⅳ:Sentence Completion):(共10题,每小题2分,共20分) 一般为汉译英各一半。其本质,就是在谙熟两种语言内在结构的基础上自由转换。汉译英的能力主要取决于用英语的表达能力,注意时态及语态,词语的固定搭配。 第五部分:写作(Part Ⅴ:Writing):15分 要求考生写出一篇100词以上的短文,试卷上可能给出题目,或规定情景,或要求看图作文,或给出段首句要求续写;或给出关键词要求写成短文。要求能够正确表达思想,意义连贯,无重大语法错误。写作的内容多以信件及通知等形式的应用文为主,内容可包括大学生的学习和生活以及广受关注的一些社会热点问题。在功能上,主要涉及事件陈述、现象描述、问题概括、举例论证、利弊分析、因果分析、观点阐述、观点总结。 短文写作部分的目的是测试学生运用英语书面表达思想的初步能力。

1五年一贯制高职专转本英语考试练习卷

五年一贯制高职专转本英语考试练习卷 (考试时间:90分钟) I. Reading Comprehension (本题共15小题,每题2分,共30分) Directions: There are 3 reading passages in this part. Each passage is followed by some questions or unfinished statements. For each of them there are four suggested answers marked A, B, C and D. Choose the best answer to each question. Passage One Henry was worried. This was his first time to go travelling by air. He did not know how to find his sea t, so he went to the air hostess and asked,” Could you help me? I can't find my seat."The air hostess showed him the seat and told him to sit down and fasten the seat. She told Henry's ears might feel a little strange, but he didn't need to worry about it because many people felt like that. When the plane was flying very high, Henry could stand up and move about. He could either read books, newspapers or see films. The air hostess would bring food and drinks. Henry could enjoy the flight and arrive home soon. 1. Which of the following is right? A.After getting into the plane Henry found his seat and sat down at once. B.Henry sat down in his seat and fastened the seat belt without any help. C.Thanks to the air hostess, Henry knew how to find his seat and fasten the seat belt. D.With the help of the hostess, Henry got into the plane. 2. In the passage, “move about”means“_____”. A. talk to each other B. change his seat at that moment C. walk here and there D. go on moving 3.When th e plane was going up, Henry didn’t need to worry about______. A. the plane B. the strange feeling C. his seat D. his health 4.What do you think would happen at the end of the story? A. Henry would have a pleasant journey. B. The airhostess would help Henry as much as possible. C. The airhostess would ask Henry to see the film. D. Henry was worried for most of the way. 5. What is the passage about? A. A enjoyed journey. B. Henry’s first flight. C. The helpful airhostess. D. Terrible travel by air. Passage Two Guide to Stockholm University Library Our library offers different types of studying places and provides a good studying environment. Zones The library is divided into different zones. The upper floor is a quiet zone with over a thousand places for silent reading, and places where you can sit and work with your own computer. The reading places consist mostly of tables and chairs. The ground floor is the zone where you can talk. Here you can find sofas and armchairs for group work. Computers

江苏专转本考试计算机模拟题word版本

江苏专转本计算机模拟试题(一) 一、选择题 1、人们习惯于将计算机的发展划分为四代。划分的主要依据是() A.计算机的运行速度 B.计算机的规模 C.计算机主机所使用的主要元器件 D.大规模或超大规模集成电路 2、当前国际上提倡生产的“绿色”电脑,其特点是() A、采用高清晰度的绿色显示器 B、功耗少、昼采用减少环境污染的部件 C、具有电子邮件通信功能 D、体积小、重量轻、便于携带 3、CAD的含义是() A、计算机辅助教育 B、计算机辅助设计 C、计算机辅助制造 D、计算机辅助工程 4、以下对计算机软件与硬件关系的描述中,不正确的是() A、计算机系统由硬件与软件组成 B、硬件功能无法用软件来实现 C、软件是硬件功能的扩充 D、硬件是软件的基础 5、在计算机中的CRT是指() A、打印机 B、扫描仪 C、键盘 D、阴极射线显示器 6、CPU中控制器的主要功能是() A、识别指令和控制指令的执行 B、传送信息 C、控制输入输出设备 D、把数据存入存储器 7、INTEL8088、80286、80386、80486指的()的不同型号 A、外存储器 B、内存储器 C、微处理器 D、显示器 8、微机的运算器、控制器、主存储器构成计算机的()部分 A、硬件系统 B、外设 C、主机 D、CPU 9、在评价计算机的性能时,通常用MIPS来描述计算机()。 A、平均无故障时间 B、平均故障修复时间 C、主存的存取周期 D、CPU的运算速度 10、下列几种存储器中,存取周期最短的是() A、主存储器 B、光盘 C、硬盘 D、CACHE 11、下列叙述中,()是正确 A、软盘和硬盘可永久保存信息,它们是计算机的主存储器 B、内存储器可与CPU直接交换信息,与外存储器相比存取速度慢,但价格便宜

2020江苏五年制专转本英语统考真题

江苏省2018年五年一贯制高职“专转本”考试 英语统考试卷 (90分钟) I. Reading Comprehension Passage One The TV play Zheng He is broadcasted on CCTV and the great Chinese traveler comes gradually back to us. It reminds us of a lot of excitement. Zheng He, the Columbus of the east, was an amazing man. He was born in 1371 and, 11 years later, was caught by the army of a rich young man called Zhu Di and made to word for him. Over time the rich man saw that Zheng He was very clever and strong and they became close friends. In 1403, Zhu Di was made the king of China and asked Zheng He to join his new government. The King wanted to learn more about the world and show other countries his power. He ordered many new ships to be built and made Zheng He the leader. Between 1405 and 1433, he led seven sea ships to different parts of the world. He certainly traveled to India, Africa and the Middle East. Some people insist that his ships may have even reached South Africa and Australia. Each trip lasted between two and four years and it is believed he sailed more than 50,000 kilometers during his travels. With 28,000 men and over 300 ships, such as boats for food, water and even soldiers’ horses, Zheng He led a fleet whose size would not be equaled by Europeans for over 500 years. On these trips, he brought with him many Chinese goods like silk and medicine to give to the foreign kings or to sell for local goods. He returned from each trip with boats filled with expensive things such as gold and jewellery, foreign guests and strange animals like a giraffe. It is a pity that we may never learn everything about Zheng He’s travels. After he died in 1433, the new king, who thought these trips were unlucky and cost too much, had them stopped and he burned almost all the books about Zheng He’s travels. It is onl y in the last 50 years, that historians have carefully studied the adventures of the great Zheng He. 1. Why did the Chinese King order Zheng He to sail to many different countries? A. To bring new countries under the control of China. B. To show the world his power. C. To receive gifts from the kings of other countries. D. To discover unusual animals. 2. What do we know about Zheng He from the passage? A. He sailed across the world. B. Each of the trips lasted one year. C. He died at the age of 62. D. He was a successful soldier. 3. Which of the following did Zheng He bring with him from China? A. Gold B. Jewellery C. Medicine D. Giraffes 4. What happened after Zheng He died? A. He was forgotten forever. B. His ships were all destroyed. C. The new king wrote a book about him D. Sea trips to foreign countries were stopped. 5. In what order did the following happen? a. Zhu Di become the King. b. Zheng He was caught by soldiers. c. The books about Zheng He were all burne d.

江苏省专转本计算机模拟试卷2及答案教学内容

绝密★启用前 江苏省普通高校“专转本”统一考试 计算机基础预测试题二 注意事项: 1.本试卷分为试题和答卷两部分,考生须用钢笔或圆珠笔将答案直接答在答卷纸上,答在试题纸上无效。 2.本试卷满分100分,考试时间90分钟。 一、判断题(请对下列各小题进行判断,在答卷纸相应题号的空格中,对的打“√”,错的打“×”。本大题共20小题,每小题1分,共20分。) 1.信息是认识主体所感知或表述的事物运动及其变化方式的形式、内容和效用。√ 2.已知标准电话线在不失真情况下能传送的模拟信号频率范围为300Hz~3400Hz,则其带宽为3400Hz。× 3.目前,各类计算机的指令系统都是兼容的。× 4.在计算机的主板上,CMOS和BIOS都是易失性存储器,必须用电池供电,才能使计算机关机后数据不丢失。× 5.CD-R、CD-RW、DVD都是采用激光技术来存取信息的。√ 6.由于计算机中有多个处理器,操作系统才能同时执行多个任务的处理。√ 7.操作系统是计算机中管理所有软件和硬件资源的系统软件。√ 8.虚拟专用网(VPN)是借助公用骨干网络平台构建广域网的实用技术。√ 9.网络适配器俗称网卡, 是一块网络接口电路板,只有装了网卡的计算机才能上网。√ 10.建立计算机网络的最主要目的是实现资源共享和数据通信。√ 11.使用数字波形法表示声音信息时,采样频率越高,则得到的数据量越大。× 12.在多媒体计算机系统中,视频信息采用数字形式表示后,图像质量会下降,信息复制也会产生失真。× 13.关系数据模型提供了关系操作的能力,关系操作的特点是:操作的对象是关系,操作的结果仍为关系(包含关系为空的情况)。√ 14.在Windows操作系统中,文件系统的主要目标是实现对文件按内容存取。×15.Windows操作系统的对话框的外形与窗口类似,顶部为标题栏,对话框的大小固定。×16.在Word 中,设置段落的左右边界、特殊格式、段间距和行距时,可以采用指定单位,如左右边界用“厘米”,首行缩进用“字符”,间距用“磅”等。只要在键入设置值的同时键入单位即可。√ 17.在Word 中,只有在页面视图才可以看到插入的页码,普通视图、大纲视图以及打印预览方式下是看不到页码的。× 18.Excel 中的图表与相应的数据区是关联的,因此,修改表格中的数据,相应图表也会自动作对应的修改。√ 《计算机基础》试题第1 页(共9 页)

江苏省五年制专转本英语模拟题

2015—2016 学年第一学期 会计专业1115 班《英语》模拟考试试卷 (考试形式:闭卷考试用时:120 分钟) PartⅠReading Comprehension每( 题2 分,共30 分) Directions: There are 3 reading passagesin this part. Each passageis followed by some questions or unfinished statements. For each of them there are four suggested answers marked A , B , C and D choose the best answer to each question Passage one It was one of those terribly hot days in Baltimore. Needless to say, it was too hot to do anything outside. But it was also scorching in our apartment. This was 1962, and I would not live in a place with an air conditioner for another ten years. So my brother and I decided to leave the apartment to find someplace indoors. He suggested we could see a movie. It was a brilliant plan. Movie theaters were one of the few places you could sit all day and —most important —sit in air conditioning. In those days, you could buy one ticket and sit through two movies. Then, the theater would show the same two movies again. If you wanted to, you could sit through them twice. Most people did not do that, but the manager at our theater. Mr. Bellow did not mind if you did. That particular day, my brother and I sat through both movies twice, trying to escape the heat. We bought three bags of popcorn and three sodas each. Then, we sat and watched The Music Man followed by The Man Who Shot Liberty Valance. We’dalready seen the second movie once before. It had been at the theater since January, because Mr. Bellow loved anything with John Wayne in it. We left the theater around 8, just before the evening shows began. But we returned the next day and saw the same two movies again, twice more. And we did it the next day too. Finally, on the fourth day, the heat wave broke. Still, to this day I can sing half the songs in The Music Man and recite half of John Wayne and Jimmy Stewart ’disalogue from The Man Who Shot Liberty Valance! Those memories are some of the few I have of the heat wave of 1962. They ’rereally memories of the screen, not memories of my life. 1. In which year did the author first live in a place with an air conditioner? A. 1952 B. 1962 C. 1972 D. 1982 2. What does the underlined word “It ”in Paragraph 3 refer to? A. The heat B. The theater. C. The Music Man D. The Man Who Shot Liberty Valance 3. What do we know about Mr. Bellow? A. He loved children very much. B. He was a fan of John Wayne. C. He sold air conditioners. D. He was a movie star. 4. Why did the author and his/her brother see the same movies several times? A. The two movies were really wonderful. B. They wanted to avoid the heat outside. C. The manager of the theater was friendly. D. They liked the popcorn and the soda at the theater.

五年一贯制专转本英语翻译练习

填空 1.Don’t _____________(嘲笑)the people in trouble. 2._________________(她信守承诺)to visit her aunt regularly. 3.He studies music ______________________(在他闲暇时). 4.Harriet is lost and her parents are really _______________(为她担心). 5.I walked as fast as I could,but I couldn’t ________________(赶上他). 6.You must leave here___________________________(尽可能快). 7.His dream ______________(实现)at last with his great effort. 8.We talked about how to __________________(解决)the waste. 9.The old traditions are __________________(正在消失). 10.________________(不要担心),everything’s under control. 11.Are you still __________________________(保持联系)your old friends? 12.It is helpful to_________________________(养成好的习惯) of reading in language learning. 13.The ground _________________________(被大雪覆盖着). 14.In mountain areas, __________________(同我年纪相仿的儿童) can’t afford to go to school. 15._______________(我不相信)in these so-called health foods.

[专升本类试卷]江苏省专转本(高等数学)模拟试卷2.doc

[专升本类试卷]江苏省专转本(高等数学)模拟试卷2 一、选择题 在每小题给出的四个选项中,只有一项是符合要求的。 1 已知连续函数f(x)满足f(x)=x2+x∫01f(x)dx,则f(x)=( )。 (A)f(x)=x2+x (B)f(x)=x2-x (C)f(x)=x2+ (D)f(x)=x2+ 2 函数在x=0处( )。 (A)连续但不可导 (B)连续且可导 (C)不连续也不可导 (D)可导但不连续 3 关于的间断点说法正确的是( )。 (A)x=kπ+为可去间断点

(B)x=0为可去间断点 (C)x=kπ为第二类无穷间断点 (D)以上说法都正确 4 设D:x2+y2≤R2,则=( )。 (A)=πR3 (B)∫02πdθ∫0R rdr=πR2 (C)∫02πdθ∫0R r2dr=πR3 (D)∫02πdθ∫0R R2dr=2πR3 5 抛物面在点M0(1,2,3)处的切平面是( )。(A)6x+3y-2z-18=0 (B)6x+3y+2z-18=0 (C)6x+3y+2z+18=0 (D)6x-3y+2z-18=0 6 幂级数的收敛半径是( )。 (A)0

(B)1 (C)2 (D)+∞ 二、填空题 7 ,则a=______,b=______。 8 u=f(xy,x2+2y2),其中f为可微函数,则=______。 9 已知函数f(x)=aln+bx2+x在x=1与x=2处有极值,则a=______,b=______。 10 a,b为两个非零矢量,λ为非零常数,若向量a+λb垂直于向量b,则λ等于______。 11 已知f(cosx)=sin2x,则∫f(x-1)dx=______。 12 已知f(x)=,f[φ(x)]=l-x,且φ(x)≥0,则φ(x)的定义域为______。 三、解答题 解答时应写出推理、演算步骤。 13 。 14 z=arctan,求dz。

五年一贯制专转本模拟题和答案(可编辑修改word版)

2017 年春五年一贯制高一英语期 Name ________ Scores _______ 一、阅读理解共30 分,每2 分) Passage 1 Hawaii is a truly beautiful place. Most people know Hawaii for its lovely beaches. However, Hawaii is also a land full of legends( 传). One of the oldest legends tells of a special dance called the hula, which started here around 300years ago. One hula teacher tells the story of how the dance started. “The hula started, as far as the legend tells it, when Hi ’iaki and her good friend Hopoe went down to the beach. And t h h e e n n, w they were there, they noticed the waves ?i m a i t n a d t e t d h e t h y e waves. And then started to use their hands ?like showing the waves. That is how the hula started. ” However, not everyone has always liked the hula. In 1820,some religious people from Western countries came to Hawaii. The visitors were shocked by the hula because the dancers were not wearing many clothes. So they asked the local government to banthe dance. After that, most Hawaiians were not allowed to perform the hula in public for almost 60 years. But that did not mean the dancing stopping stopped. Many dances still performed the hula in secret. The dance was always there. Things have changed. At the moment, people of all ages want to study the old culture. They want to learn how to dance the hula. As a result, more and more people are attending halaus. Halaus are special schools that hula in the traditional way. Kumano is a hula teacher. For him, the dance is a way to bring the best of old Hawaii culture to people today. Kumano says that the dance is not really about the body. He feels that it is more about the mind. He explains this feeling , ”?the hula is more ?not so much a physical thing, but more of a mental thing. For new dances, the dancing means very little, because for Hawaiians today, many of th em don t speak the Hawaiian language. So, what I try to do is to mind the real thing they see today. ” 1. Which of the following has the closest meaning to the underlined word ”imitated in”t his passage? ” A. Absorbed B. Chased. C. Recorded. D. Copied. 2. Why was the hula banned for almost 60 years? A. Because the local government found the movements of the dance were rude. B. Because the religious visitors thought that the dances did not dress properly. C. Because the dances realized it was not suitable to perform the dance in public. D. Because the Hawaiian people believed the dance was not in fashion any more. 3. What can we learn from the passage? A. Hi iaki and her good friend Hopoe got the idea of the dance from nature. B. The hula had already had a history had a history of over 200 years when it was banned. C. Many people attend hulaus because they teach the hula in a modern way. D. Kumano thinks that the hula dance is good exercise for people of all ages. 4.How do we understand that Kumano tries to bring to mind the real thing they today? A. He tries to help young Hawaiian understand the old culture better. B. He tries to let new dances feel the beauty of the Hawaiian language.

2017年江苏省专转本英语模拟试题第一套(含答案)

2017年江苏省专转本英语模拟试题1 第I卷(共100分) 注意事项: 1、答第I卷前,考生务必按规定要求填涂答题卡上的姓名、准考证号等项目及卷首和第7页上的姓名; 2、用铅笔把答题卡上相应题号中正确答案的标号涂黑。答案不涂在答题卡上,成绩无效。 Part I Reading Comprehension (共20小题,每小题2分,共40分) Directions: In this part there are four passages. Each passage is followed by four comprehension questions. Read the passage and answer the questions. Then mark your answer on the Answer Sheet. Passage One Questions 1 to 5 are based on the following passage: Animals react to the changing seasons with changes in mood and behavior and human beings are no exception. Most people find they eat and sleep slightly more in winter and dislike the dark mornings and short days. For some, however, symptoms (症状) are severe enough to damage their lives and to cause considerable stress. These people are suffering from SAD. The symptoms tend to start from around September each year lasting until April, but are at their worst in the darkest months. The standard figure says that around 2% of people in Northern Europe suffer badly, with many more (10%) putting up with milder symptoms. Across the world the incidence (发生率) increases with distance from the equator (赤道), except where there is snow on the ground, when it becomes less common. More women than men are found having SAD. Children and young people can also suffer from it. The problem stems from the lack of bright light in winter. Researchers have proved that bright light makes a difference to the brain chemistry, although the exact means by which sufferers are affected is not yet known. As the cause is lack of bright light, the treatment is to be in bright light every day by using a lightbox or a similar bright treatment. (Going to a brightly-lit climate, whether skiing or somewhere hot, is indeed a cure). The preferred level

江苏五年制“专转本”英语考试大纲

江苏五年制“专转本”英语考试大纲 考试内容:专转本英语考试包括五个部分:阅读理解、词语用法与语法结构、完形填空、翻译、作文,难易程度为高考英语水平。 试卷满分100分。考试时间为90分钟。 第Ⅰ卷(客观题):(65分) 第一部分:阅读理解(Part Ⅰ:Reading Comprehension) 第二部分:词语用法和语法结构(Part Ⅱ:Vocabulary and Structure) 第三部分:完形填空(Part Ⅲ:Cloze) 第Ⅱ卷(主观题):(35分) 第四部分:翻译(Part Ⅳ:Translation) 第五部分:写作(Part Ⅴ:Writing) 第一部分:阅读理解(Part Ⅰ:Reading Comprehension):(共15题,每小题2分,共30分)要求考生阅读3篇短文,每篇阅读量不超过200词。 每篇短文后有5个问题,考生应根据文章内容从每题四个选择项中选出一个最佳答案。选材的原则是: 1、题材广泛,可以包括人物传记、社会、文化、日常知识、科普常识等,但是所涉及的背景知识应能为学生所理解; 2、体裁多样,可以包括叙述文、说明文、议论文等; 3、文章的语言难度中等,无法猜测而又影响理解的关键词会用汉语注明词义。阅读理解部分主要测试下述能力: 1、掌握所读材料的主旨和大意;

2、了解说明主旨和大意的事实和细节; 3、既理解字面的意思,也能根据所读材料进行一定的判断和推论; 4、既理解个别句子的意义,也理解上下文的逻辑关系。阅读理解部分的目的是测试学生通过阅读获取信息的能力,既要求准确,也要求有一定速度。 第二部分:词语用法和语法结构(Part Ⅱ:Vocabulary and Structure):(共15题,每小题1分,共15分) 题目为词和短语的用法和语法结构。要求考生从每题四个选择项中选出一个最佳答案。试题主要相关于谓语动词的时态语态、非谓语动词、it作形式主语或形式宾语、强调句、倒装句、从句引导词、虚拟语气等。词语用法和语法结构部分的目的是测试学生运用词汇、短语及语法结构的能力。 第三部分:完形填空(Part Ⅲ:Cloze):(共10题,每小题2分,共20分) 在一篇或两篇题材熟悉、难度适中的短文(约100词)中留有10个空白,每个空白为一题,每题有四个选择项,要求考生在全面理解内容的基础上选择一个最佳答案,使短文的意思和结构恢复完整。填空的词项包括结构词和实译词。完形填空部分的目的是测试学生综合运用语言的能力,包括语法概念、词汇运用、篇章结构的理解等综合能力。 第四部分:翻译(Part Ⅳ:Sentence Completion):(共10题,每小题2分,共20分)一般为汉译英各一半。其本质,就是在谙熟两种语

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