文档库 最新最全的文档下载
当前位置:文档库 › C 自考历年真题小集

C 自考历年真题小集

C  自考历年真题小集
C  自考历年真题小集

C++自考历年真题小集.txt这是一个禁忌相继崩溃的时代,没人拦得着你,只有你自己拦着自己,你的禁忌越多成就就越少。自卑有多种档次,最高档次的自卑表现为吹嘘自己干什么都是天才。全国2008年10月自学考试

C++程序设计试题

课程代码:04737

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

在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。

1.对C++语言和C语言的兼容性,描述正确的是()

A.C++兼容C

B.C++部分兼容C

C.C++不兼容C

D.C兼容C++

2.在C++中使用流进行输入输出,其中用于屏幕输出的对象是()

A.cerr

B.cin

C.cout

D.cfile

3.对使用关键字new所开辟的动态存储空间,释放时必须使用()

A.free

B.create

C.delete

D.realse

4.如没有使用private关键字定义类的数据成员,则默认为()

A.private

B.public

C.protected

D.friend

5.使用值传递方式将实参传给形参,下列说法正确的是()

A.形参是实参的备份

B.实参是形参的备份

C.形参和实参是同一对象

D.形参和实参无联系

6.在函数调用时,如某一默认参数要指明一个特定值,则有()

A.其之前所有参数都必须赋值

B.其之后所有参数都必须赋值

C.其前、后所有参数都必须赋值

D.其前、后所有参数都不必赋值

7.设存在函数int max(int,int)返回两参数中较大值,若求22,59,70三者中最大值,下列表达式不正确的是()

A.int m = max(22,max(59,70));

B.int m = max(max(22,59),70);

C.int m = max(22,59,70);

D.int m = max(59,max(22,70));

8.下列哪个类型函数不适合声明为内联函数()

A.函数体语句较多

B.函数体语句较少

C.函数执行时间较短

D.函数执行时间过长

9.int Func(int,int);不可与下列哪个函数构成重载()

A.int Func(int,int,int);

B.double Func(int,int);

C.double Func(double,double);

D.double Func(int,double);

10.对类中声明的变量,下列描述中正确的是()

A.属于全局变量

B.只属于该类

C.属于该类,某些情况下也可被该类不同实例所共享

D.任何情况下都可被该类所有实例共享

11.类的私有成员可在何处访问()

A.通过子类的对象访问

B.本类及子类的成员函数中

C.通过该类对象访问

D.本类的成员函数中

12.如果没有为一个类定义任何构造函数的情况下,下列描述正确的是()A.编译器总是自动创建一个不带参数的构造函数

B.这个类没有构造函数

C.这个类不需要构造函数

D.该类不能通过编译

13.一个类可包含析构函数的个数是()

A.0个

B.1个

C.至少一个

D.0个或多个

14.this指针存在的目的是()

A.保证基类公有成员在子类中可以被访问

B.保证每个对象拥有自己的数据成员,但共享处理这些数据成员的代码

C.保证基类保护成员在子类中可以被访问

D.保证基类私有成员在子类中可以被访问

15.下列关于类的权限的描述错误的是()

A.类本身的成员函数只能访问自身的私有成员

B.类的对象只能访问该类的公有成员

C.普通函数不能直接访问类的公有成员,必须通过对象访问

D.一个类可以将另一个类的对象作为成员

16.在编译指令中,宏定义使用哪个指令()

A.#include

B.#define

C.#if

D.#else

17.设类A将其它类对象作为成员,则建立A类对象时,下列描述正确的是()A.A类构造函数先执行

B.成员构造函数先执行

C.两者并行执行

D.不能确定

18.下列描述错误的是()

A.在创建对象前,静态成员不存在

B.静态成员是类的成员

C.静态成员不能是虚函数

D.静态成员函数不能直接访问非静态成员

19.对于友元描述正确的是()

A.友元是本类的成员函数

B.友元不是本类的成员函数

C.友元不是函数

D.友元不能访问本类私有成员

20.在哪种派生方式中,派生类可以访问基类中的protected成员()

A.public和private

B.public和protected

C.protected和private

D.仅protected

二、填空题(本大题共20小题,每小题1分,共20分)

请在每小题的空格中填上正确答案。错填、不填均无分。

21.设要把一个文件输出流对象myFile与文件“f:\myText.txt相关联,所用的C++语句是:__________。

22.C++中ostream类的直接基类是________。

23.运算符[ ]只能用________运算符来重载,不能用友元运算符来重载。

24.定义虚函数所用的关键字是________。

25.vector类中用于返回向量中第1个对象的方法是________。

26.在C++中,利用向量类模板定义一个具有20个char的向量E,其元素均被置为字符‘t’,实现此操作的语句是________。

27.类的继承是指子类继承基类的________和成员函数。

28.不同对象可以调用相同名称的函数,但可导致完全不同的行为的现象称为________。29.________指令指示编译器将一个源文件嵌入到带该指令的源文件之中。

30.设类A有成员函数

void Fun(void);

若要定义一个指向类成员函数的指针变量pafn来指向Fun,该指针变量的声明语句是:________。

31.设在程序中使用如下语句申请了一个对象数组:

Point * ptr = new Point[2];

则在需要释放ptr指向的动态数组对象时,所使用的语句是________。

32.在保护派生中,基类权限为Private的成员在派生类中________。

33.类A有如下成员函数

int A::fun(double x){return (int) x/2;}

int A::fun(int x){return x*2;}

设a为类A的对象,在主函数中有int s=a.fun(6.0)+a.fun(2),则执行该语句后,s的值为________。

34.对象传送的消息一般由3部分组成:接收对象名、调用操作名和________。

35.将指向对象的指针作为函数参数,形参是对象指针,实参是对象的________。

36.在使用string类的find成员函数来检索主串中是否含有指定的子串时,若在主串中不含指定的子串,find函数的返回值是________。

37.在C++中,声明布尔类型变量所用的关键字是________。

38.执行下列代码

int a=29,b=100;

cout <程序的输出结果是:________。

39.执行下列代码

cout <<″Hex:″<< hex << 255;

程序的输出结果为________。

40.C++语言中可以实现输出一个换行符并刷新流功能的操控符是________。

三、改错题(本大题共5小题,每小题2分,共10分)

下面的类定义中有一处错误,请用下横线标出错误所在行并给出修改意见。

41.#include

main( ) {

int x=5,y=6;

const int * p=&x;

*p=y;

cout<<*p<}

42.#include

class f{

private:int x,y;

public:f1( ){x=0;y=0;}

print( ){cout<}

main( ){

f a;

a.f1(1,1);

a.print( );

}

43.#include

class f{

private:int x=0,y=0;

public:void f1(int a,int b){x=a;y=b;}

void get( ){cout< };

main( ){

f a;

a.f1(1,3);

a.get ( );

44.#include

class point{private:float x;

public:void f(float a){x=a;}

void f( ){x=0;}

friend float max(point& a,point& b);

};

float max(point& a,point& b)

{return(a.x>b.x)? a.x:b.x;}

main( ){

point a,b;

a.f(2.2);

b.f(3.3);

cout< }

45.#include

template

class f{

private:T x,y;

public:void f1(T a,T b){x=a;y=b;}

T max( ){retum(x>y)?x:y;}

};

main( ){

f a;

a.f1(1.5,3.8);’

cout<}

四、完成程序题(本大题共5小题,每小题4分,共20分) 46.完成下面类中的成员函数的定义。

class point

{

private:

int m,n;

public:

point(int,int);

point(point&);

};

point::point(int a,int b)

{

m=a;

________=b;

}

point::point(________)

{

m=t.m;

n=t.n;

47.下面是一个输入半径,输出其面积和周长的C++程序,在下划线处填上正确的语句。 #include

using namespace std;

________pi=3.14159;

void main( )

{

double r;

cout<<″r=″;

___________ ;

double l=2.0*pi*r;

double s=pi*r*r;

cout<<″\n The long is:″< cout<<″The area is:″< }

48.在下划线处填上缺少的部分。

#include

#include

using namespace std;

class complex

{

public:

int real;

int imag;

complex(int r=0,int i=0)

{

real=r;

imag=i;

}

};

complex operator+(________,complex& b)

{

int r=a.real+b.real;

int i=a.imag+b.imag;

return_________;

}

void main( )

{

complex x(1,2),y(3,4),z;

z=x+y;

cout< }

49.程序的输出结果如下:

1,9

50,30

请根据输出数据在下面程序中的下划线处填写正确的语句。

源程序如下:

#include

using namespace std;

class base

{

private:

int m;

public:

base( ){ };

base(int a):m(a){}

int get( ){return m;}

void set(int a){m=a;}

};

void main()

{

base*ptr=new base[2];

ptr- >set(30);

ptr= _________;

ptr- >set(50);

base a[2]={1,9};

cout< cout

ptr=ptr-1;

cout<<________< delete[ ]ptr;

}

50.在下面横线处填上求两个浮点数之差的cha函数的原型声明、调用方法。 #include

using namespace std;

void main( )

{

float a,b;

________//函数cha的原型声明

a=12.5;

b=6.5;

float c=_________;//调用函数cha

cout< }

float cha(float x,float y)

{

float w;

w=x-y;

return w;

}

五、程序分析题(本大题共4小题,每小题5分,共20分)

51.给出下面程序的输出结果。

#include

template

class Sample

{

T n;

public:

Sample(T i){n=i;}

int operator==(Sample &);

};

template

int Sample::operator==(Sample&s)

{

if(n==s.n)

return 1;

else

return 0;

}

void main( )

{

Samplesl(2),s2(3);.

cout<<″s1与s2的数据成员″<<(sl==s2 ?″相等″:″不相等″)< Samples3(2.5),s4(2.5);

cout<<″s3与s4的数据成员″<<(s3==s4 ? ″相等″:″不相等″)< }

52.给出下面程序的输出结果。

#include

using namespace std;

template

T max(T ml,T m2)

{return(m1>m2)?ml:m2:}

void main( ) {

cout< cout< }

53.给出下面程序的输出结果

#include

using namespace std;

class A {

public:

int x;

A( ) { }

A(int a){x=a;}

int get(int a){return x+a;} };

void main( ) {

A a(8);

int(A::*p)(int);

p=A::get;

cout<<(a.*p)(5)< A*pi=&a;

cout<<(pi- >*P)(7)<54.给出下面程序的输出结果。

include

#include

using namespace std;

class Book {

char*title;

char*author;

int numsold;

public:

Book( ){ }

Book(const char*strl,const char*str2,const int num) {

int len=strlen(strl);

title=new char[len+1];

strcpy(title,str1);

len=strlen(str2);

author=new char[len+1];

strcpy(author,str2);

numsold=num; }

void setbook(const char*str1,const char*str2,const int num) {

int len=strlen(str1);

title=new char[len+1];

strcpy(title,str1);

len=strlen(str2);

author=new char[len+1];

strcpy(author,str2);

numsold=num;

}

~Book( ) {

delete title;

delete author;

}

void print(ostream&output) {

output<<″书名:″< output<<″作者:″< output<<″月销售量:″< } .

};

void main( ) {

Book obj1(″数据结构″,″严蔚敏″,200),obj2;

obj1.print(cout);

obj2.setbook(″C++语言程序设计″,″李春葆″,210);

obj2.print(cout);

}

六、程序设计题(本大题共1小题,共10分)

55.在三角形类TRI实现两个函数,功能是输入三个顶点坐标判断是否构成三角形

#include

#include

class point{

private:float x,y;

public:point(float a,float b){x=a;y=b;}

point( ){x=0;y=0;} ,

void set(float a,float b){x=a;y=b;}

float getx( ){return x;}

float gety( ){return y;}

};

class tri{

point x,y,z;

float s1,s2,s3;

public;...settri(....);//用于输入三个顶点坐标

....test(....);//用于判断是否构成三角形

};请写出两个函数的过程(如果需要形式参数,请给出形参类型和数量,以及返回值类型

全国2009年1月自学考试

C++程序设计试题

课程代码:04737

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

在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。

1.C++源程序文件扩展名为( )

A..cpp

B..h

C..1ib

D..obj

2.在C++中使用流进行输入输出,其中专用于从键盘进行输入的流是( )

A.cerr

B.cin

C.cout

D.cfile

3.包含自定义头文件file.h的预处理指令是( )

A.#define

B.#include file.h

C.#define file.h

D.#include"file.h"

4.用于标识十六进制前缀或后缀是( )

A.元

B.后缀L或e

C.前缀零

D.前缀0x

5.设存在整型变量int x,则下列句与其它三项含义不同的是( )

A.int* p=&x;

B.int& p=x;

C.int & p=x;

D.int &p=x;

6.在定义类成员时,为产生封装性,则需使用哪个关键字( )

A.public

B.publish

C.protected

D.private

7.设函数void swap(int&,int&)将交换两形参的值,如两整型变量int a=10;int b=15;则执行swap(a,b)后,a、b值分别为( )

A.10,10

B.10,15

C.15,10

D.15,15

8.函数默认参数在函数原型中说明,默认参数必须放在参数序列的( )

A.前部

B.中部

C.后部

D.两端

9.设存在函数int min(int,int)返回两参数中较小值,若求15,26,47三者中最小值,下列表达式中错误的是( )

A.int m=min(min(15,26),min(15,47));

B.int m=min(15,26,47);

C.int m=min(15,min(47,26));

D.int m =min(min(47,26),16);

10.下列函数不能和函数void print(char)构成重载的是( )

A.int print(int);

B.void print(char,char);

C.int print(char);

D.void print(int,int);

11.在下列成对的表达式中,运算结果类型相同的一对是( )

A.7/2和7.0/2.0

B.7/2.0和7/2

C.7.0/2和7/2

D.7.0/2.0和7.0/2

l2.内联函数的特点是( )

A.减少代码量,加快访问速度

B.减少代码量,减缓访问速度

C.增加代码量,减缓访问速度

D.增加代码量,加快访问速度

13.类的私有成员可在何处被访问( )

A.本类的成员函数中

B.本类及子类的成员函数中

C.通过对象名在任何位置

D.不可访问

14.类的构造函数在以下什么情况下会被自动调用( )

A.定义成员函数时

B.定义对象时

C.定义数据成员时

D.定义友元函数时

15.下列关于析构函数描述正确的是( )

A.可以重载

B.函数体中必须有delete语句

C.返回类型必须是void类型

D.不能指定返回类型

16.设有函数T Sum(T x,T y){return x+y;},其中T为模板类型,则下列语句中对该函数错误的使用是( )

A.Sum(1,2);

B.Sum(3.0,2.2);

C.Sum(‘A’,‘C’);

D.Sum("A","C");

17.下列哪个编译指令属于条件编译指令( )

A.#include

B.#define

C.#else

D.#pragma

18.关于类的静态成员函数描述错误的是( )

A.在创建对象前不存在

B.不能说明为虚函数

C.不能直接访问非静态函数

D.不是对象的成员

l9.如果类A被声明成类B的友元,则( )

A.类A的成员即类B的成员

B.类B的成员即类A的成员

C.类A的成员函数不得访问类B的成员

D.类B不一定是类A的友元

20.派生类的对象可以访问以下那种情况继承的基类成员( )

A.私有继承的私有成员

B.公有继承的私有成员

C.私有继承的保护成员

D.公有继承的公有成员

二、填空题(本大题共20小题,每小题1分,共20分)

请在每小题的空格中填上正确答案。错填、不填均无分。

21.若使用标准输出流把整型变量a的值输出到屏幕上,实现此操作的C++语句是______。

22.C++将数据从一个对象流向另一个对象的流动抽象为“流”,从流中获取数据的操作称为______。

23.执行下列代码

int b=100;

cout<<"Hex:"<

程序的输出结果是______。

24.静态联编所支持的多态性称为______的多态性。

25.C++程序必须有且只有一个主函数,其函数名为______。

26.写出声明一个复数对象的语句,并使该对象被初始化为2.2+1.3i,此声明语句是______。

27.若有函数定义为:

int add(int ml=0,int m2=2,int m3=4)

{return ml+m2+m3;}

在主函数中有int s=add(1)+add(0,1)+add(0,1,2);

则执行此语句后s的值为______。

28.C++中使用______关键字说明函数为内联函数。

29.在源程序中有宏定义:#define PI 3.14,则若不想使该宏定义影响到程序的其它地方,可以使用______删除该宏定义。

30.类和其它数据类型不同的是,组成这种类型的不仅可以有数据,还可以有对数据进行操作的_______。

31.有下列代码int a=0;double b=0;cin>>a>>b;当用键盘输入1.25时,b=______。

32.对于类Point而言,其析构函数的定义原型为______。

33.对象成员构造函数的调用顺序取决于这些对象在类中说明的顺序,与它们在成员初始化列

表中给出的顺序______。

34.类的简单成员函数是指声明中不含______、volatile、static关键字的函数。

35.与操作对象的数据类型相互独立的算法称为______。

36.从一个或多个以前定义的类产生新类的过程称为______。

37.在vector类中向向量尾部插入一个对象的方法是______。

38.C++中用于动态创建对象,并返回该对象的指针的关键字是______。

39.C++的流类库预定义的与标准输出设备相联接的流是______。

40.执行下列代码

cout<

程序输出结果是______。

三、改错题(本大题共5小题,每小题2分,共10分)

下面的类定义中有一处错误,请用下横线标出错误所在行并给出修改意见。

41.#include

class f{

private:float x,y;

public:f(float a,float b){x=a;y=b;}

float max(){return(x

} ;

main( ){

f a(1.5,3.8);

cout<

}

42.#include

class test{

private:int x;

public:test(int a){x=a;}

void set(int a){x=a;}

void get(){cout<

}

main(){

const test a(3);

A.set(5);

A.get();

}

43.#include

class point{

private:float x,y;

public:f1(float a,float b){x=a;y=b;}

point(){x=0;y=0;}

void getx(){cout<

void gety(){cout<

};

void print(point a){cout<

main(){

point a;

A.f1(3.0,5.0);

print(a);

}

44.#include

class f{

private:int x,y;

public:fl(int a,int b){x=a;y=b;}

void print(){cout<

} ;

main(){

f a;

A.f1(1.5,1.8);

A.print();

}

45.#include

main(){

int x=6;

const int*p=x;

cout<<*p<

}

四、完成程序题(本大题共5小题,每小题4分,共20分)

46.完成下面程序,使其输出l0,并在退出运行时正确释放分配给指针的存储空间。#include

using namespace std;

void main()

{

int *a,*p;

a=new int(10);

p= ______;

cout<<*p<

__________

}

47.#include

using namespace std;

class base

{

private:int x;

public:base(int a){x=a;}

int get(){return x;}

void showbase() {cout<<"x="<

};

class Derived:public base

{private:int y;

public:Derived(int a,int b):base(a){y=b;}

void showderived()

{cout<<"x="<

};

void main()

{

base b(3);

Derived d(6,7);

b.showbase();

d.showderived();

________;

b.showbase();

________;

b1.showbase();

base* pb=&bl;

pb—>showbase();

d.showderived();

b.showbase();

}

输出结果如下:

x=3

x=6,y=7

x=6

x=6

x=6

x=6,y=7

x=6

48.下面程序的运行结果如下:

B::display()

C::display()

在下划线处填上缺少的部分。源程序如下:

#include

using namespace std;

class B

{

public:

______display( ) {cout << "B::display( ) "<

class C:public B

{

public:

_______display(){cout<<"C::display()"<

void fun(B*p)

{

p—>display();

}

void main()

{

B b,*pb;

C c;

pb=&b;

fun(pb);

pb=&c;

fun(pb);

}

49.下面程序的运行结果如下:

This is line1

This is line2

This is line3

在下划线处填上缺少的部分。源程序如下:

#include

#include_____

using namespace std;

void main()

{

fstream fin, fout;

fout.open("my.txt",ios::out);

if(!fout.is_open())

return;

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

fout<<"This is line"<

fout.close();

fin.open("my.txt",ios::in);

if(! fin.is_open())

return;

char str[100];

while(______)

{

fin.getline(str,100);

cout<

}

fin.close();

}

50.在下划线处填上缺少的部分。源程序如下:

#include

using namespace std;

________

T fun(T x)

{

______y;

y=x*x-T(5);

return y;

}

void main()

{

float a=2;

cout<

}

五、程序分析题(本大题共4小题,每小题5分,共20分)

51.请写出myTextl.txt文本文件中的内容

#include

#include

using namespace std;

#include

void main()

{

ofstream myFile1;

myFilel.open("myTextl.txt");

cout<<"Enter the data in Chinese format(e.g. ,2008,May 25):"<

string Year=Date.substr(0,4);

int k=Date.find(",");

int i=Date.find(" ");

string Month=Date.substr(k+l,i-k-1);

string Day=Date.substr(i+1,2);

string NewDate=Day+" "+Month+" "+Year;

myFilel<<"original date:"<

myFile1<<"Converted date:"<

myFilel.close();

}

52.给出下面程序的输出结果

#include

using namespace std;

class Simple

{

int x,y;

public:

Simple(){x=y=0;}

Simple(int i,int j){x=i;y=j;}

void copy(Simple&s);

void setxy(int i,int j){x=i;y=j;}

void print(){cout<<"x="<

void Simple::copy(Simple&s)

{

x=s.x;y=s.y;

}

void func(Simple s1,Simple&s2)

{

s1.setxy(30,40);

s2.setxy(70,80);

}

void main()

{

Simple obj1(1,2),obj2;

obj2.copy(obj1);

func(obj1,obj2);

obj1.print();

obj2.print();

}

53.给出下面程序的输出结果

#include"iostream.h"

int main()

{

int i=17;

while(i>=10)

if(--i%4==3)continue;

else

cout<<"i="<

}

54.给出下面程序的输出结果

#include

using namespace std;

void main()

{

int num=300;

int &ref=num;

cout<

ref=ref-100;

cout<<" "<

num=num-50;

cout<<" "<

}

六、程序设计题(本大题共1小题,共10分)

55.定义堆栈类模板Stack(先进后出),栈的大小由使用者确定。要求该类模板对外提供

如下二种基本操作:

(1)push入栈(2)pop出栈,用数组来实现

#include

using namespace std;

template

class Stack{

T x[size];

int current;

public:

Stack(){current=0;}

....push(....);

....pop(....);

};

请写出两个函数的过程(如果需要形式参数,请给出形参类型和数量,以及返回值类型)

全国2009年10月自学考试

C++程序设计试题

课程代码:04737

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

在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。

1.对C++中主函数描述正确的是( )

A.名称为main,可为多个

B.名称不限,可为多个

C.名称为main,必须有且只能有一个

D.名称不限,必须有且只能有一个

2.调用声明为int result(int a,int b)的函数时,正确的方法是( )

A.result(1,2)

B.result(1)

C.result(0.1,0.3)

D.result(1,2,3)

3.用于包含C++标准库iostream的预处理指令是( )

自考英语翻译历年真题第二大题汇总及答案

2011 7月 II.Words and phrases translation(20 points,1 point for each) A.Directions: Put the following words and phrases into Chinese. 16.a slender man一个身材瘦长的人17.country-wide trade全国贸易18.the Ethiopian highlands埃塞俄比亚高原19.economic policy经济政策20.great-grandmother(外)曾祖母21.open sea公海 22.part-time river季节性河流23.mineral oil矿物油 24.environmental law环境法25.welcoming banquet欢迎宴会 B.Directions: Put the following words and phrases into English. 26.逃学Play truant 27.军阀政府The warlord government 28.九龙壁The nine dragon wall 29.基本方针Basic principle 30.游记Travel notes 31.祥林嫂Xiang Lin's wife 32.排队to stand in a queue to line up 33.大陆架Continental shelf 34.董事会Board of directors 35.深刻影响 Profound impact 2011 4月 II. Word and Phrase Translation (20 points, 1 point each) 16. appreciation dinner 答谢宴会17. birth defect先天性生理缺陷 18. applied entomology应用昆虫学 19. member state会员国、成员国 20. maternity hospital 妇产医院21. over-the-counter medicine非处方药 22. green belt 防护林、绿化带23. inland waters内陆水域 24. room temperature 室温、常温25. debt chain三角债、债务链 B. Directions: Translate the following words and phrases into English. (Please write the answer on your Answer Sheet.)

自学考试《薪酬管理》历年真题及答案

2017年4月高等教育自学考试 薪酬管理试卷 (课程代码06091 本试卷分为两部分,满分100分,考试时间150分钟。 第一部分为选择题,第1页至第4页,共4页。应考者必须按试题顺序在“答题卡”上按要求填涂,答在试卷上无效。 第二部分为非选择题,第5页,共1页。应考者必须按试题顺序在“答题卡”上作答, 答在试卷上无效。 第一部分选择题(共35分) 一、单项选择题(本大题共25小题,每小题1分,共25分) 在每小题列出的四个备选项中只有一个是符合题目要求的,请将其选出并将“答题卡”的相应代码涂黑。错涂、多涂或未涂均无分。 以下不属于间接经济性薪酬的是 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.员工绩效工资不仅与本人绩效挂钩,而且也与部门绩效挂钩,在已知个人月度绩效考核系数为1.1,部门月度考核系数为1,岗位工资为2000元,绩效工资占岗位工资 比例为309%0,据此计算出月度绩效工资为 A.2200元 B.660元 C.1320元 D.785元 10.企业通过薪水平和薪酬结构进行薪酬控制,薪酬结构不涉及的是 A.基本薪酬 B.可变薪酬 C.法定福利 D.同行的薪酬 1.薪酬调查帮助企业了解其薪酬水平在市场中的位置,把握相关企业的薪酬政策和薪洲结构,以下不属于薪酬调査的目的的是 A.帮助制定新参加员工的起点薪酬标准 B.帮助查找企业内部工资不合理的岗位 C.为公司人事选拔和测评提供依据 D.了解当地工资水平并与本企业比较 2.常用的薪酬调查方法不包括 A.委托调査 B.调查问卷 C.访谈法 D.企业之间相互调查 3.美国哈佛大学教授斯金纳认为,人的行为只是因外部环境刺激所做的反应,受外部环境剌激所调节和控制,改变刺激就能改变行为,此理论是 A.强化理论 B.公平理论 C.双因素理论 D.期望理论 14.下列各项中不属于宽带型薪酬结构的作用的是 A.引导员工重视个人技能的增长 B.有利于专业人员的角色转变 C.能密切配合劳动力市场的供求变化 D.有利于职位轮换 15.职位评价的结果可以是分值形式,也可以是等级形式,还可以是排序形式,但人们最关心的是 A,职位与福利的对应关系

全国自学考试《大学语文》历年真题及答案汇总

全国自学考试《大学语文》历年真题及部分答案汇总 一、全国2009年1月高等教育自学考试大学语文试题―――――2 二、全国2009年4月高等教育自学考试大学语文试题―――――9 三、全国2009年7月高等教育自学考试大学语文试题―――――18 四、全国2009年10月高等教育自学考试大学语文试题――――-25 五、全国2010年1月高等教育自学考试大学语文试题―――――29 六、全国2010年4月高等教育自学考试大学语文试题―――――35 七、全国2010年7月高等教育自学考试大学语文试题―――――40 八、全国2010年10月高等教育自学考试大学语文试题――――-44 九、全国2011年1月高等教育自学考试大学语文试题―――――49 十、全国2011年1月高等教育自学考试大学语文试题―――――53 十一、全国2011年1月高等教育自学考试大学语文试题――――57 十二、全国2011年10月高等教育自学考试大学语文试题―――-65 十三、全国2012年1月高等教育自学考试大学语文试题――――69

一、全国2009年1月高等教育自学考试大学语文试题 一、单项选择题(本大题共20小题,每小题1分,共20分) 在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。 1.《秋水》中,“夏虫不可以语于冰”的喻意是( ) A.人的认识受先天素质的限制 B.人的认识受后天教育的限制 C.人的认识受时间的限制 D.人的认识受空间的限制 2.贯穿《论毅力》全文的论证方法是( ) A.演绎法 B.归纳法 C.类比法 D.对比法 3.《吃饭》中说:“弄饭给我们吃的人,决不是我们真正的主人翁。”这句话所揭示的社会现象的实质是( ) A.名实不副,相互掩饰 B.主从错位,本末倒置 C.二元对立,执两用中 D.多元相济,和而不同 4.《冯谖客孟尝君》中,冯谖再三弹铗而歌的主要目的是( ) A.我行我素,张扬个性 B.不平则鸣,不甘人后 C.照顾家庭,赡养母亲 D.探求知己,以展怀抱 5.《赵武灵王胡服骑射》所描述的中心事件是( ) A.赵武灵王胡服骑射北略中山之地 B.赵武灵王招兵买马训练胡服骑射

自考英语二历年试题(真题)及答案

2011年7月高等教育自学考试全国统一命题考试 英语(二)试卷 I. Vocabulary and. Structure (10 points, 1 point each) 从下列各句四个选项中选出一个最佳答案,并在答题卡上将相应的字母涂黑。 1 .Students should_____their own interests as well as do their schoolwork. A. persuade B .pursue C. persist D.proceed 2. I'd like to remind you that there is no_____on the part of suspects to answer questions. A. obligation B.evidence C.transaction D.motivation 3. He blamed his poor performance_____jet lag. A.to B .for C.on D.at 4 .We_____knowledge from our families,schools,jobs,and the mass media. A.request B.require C.inquire D.acquire 5. Not until recently_____that Thompson had ben telling the truth all along. A.I realized B.did I realize C.I did realize D.realized I 6. I don’t need any help at the moment,but I_____your offer. A.appreciate B.admire C.enjoy D.like 7 .The sad condition of women working as house servants around the world received much media_____early this year. A .importance B. attention C.significance D.popularity 8 .She has no hostility to us, _____can be judged from her eyes. A. that B.and C.hence D.as 9 .When you're_____ a crisis, it often helps to talk to someone. A.going through B.going in for C.going after D.going over 10.Decision on whether the message is right or wrong should at least come after _____what the message is. A.putting out B.turning out C.working out D.running out II. Cloze Test (10 points,1 point each) 下列短文中有十个空白,每个空白有四个选项。根据上下文要求选出最佳答案,并在答题卡上将相应的字母涂黑。 People in all parts of the world are observing "No Tobacco Day". It is the day 11 the World Health Organization (WHO) appeals to people to stop using tobacco products. WHO hopes if people stop smoking cigarettes or 12 tobacco for one day, they will stop permanently. Health experts have warned for years that smoking can lead to heart disease, cancer and other 13 .WHO says diseases linked to smoking kill 14 2,500,000 persons each year. Still, many people find it 15 stopping smoking. One reason is nicotine, a substance found in cigarettes. Nicotine is a drug. Its effects are 16 those of cocaine and heroin. "No Tobacco Day" is intended for smokers and 17 who earn money from tobacco sales. So businesses are urged to stop selling tobacco products for twenty-four hours. 18 are urged not to carry advertisements for cigarettes. WHO has approved plans to help reach its 19 of a "smoke-free" world. They urge governments to take action to help 20 make money by growing other crops. They also call for improved public information campaigns about the risks of smoking. 11. A. whether B. which C. when D. what

全国高等教育自学考试历年真题及答案汇总-详细

相信能就一定能 公务员制度试题01848 一、单项选择题 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.晕轮效应

最新-2017自考英语二(00015)历年真题及答案汇总

2014年4月高等教育自学考试全国统一命题考试 英语(二)标准试题 (课程代码:00015) 第一部分:阅读判断题(每题1分,共10分) 下面的短文后列出了10个句子,请根据短文的内容对每个句子做出判断:如果该句提供的是正确信息,选择A;如果该句提供的是错误信息,选择B;如果该句的信息文中没有提及,选择C。 Running: Sport or Way of Life? You go through the channels several times and find that once again there's nothing on TV that interests you. Not a problem! Just put on some running shoes and comfortable clothes and go for a run. One of the best things about the sport of running is that you don't need expensive equipment. All you need is a good pair of running shoes and a safe environment. But don't be fooled into thinking the sport of running is easy It requires discipline and concentration. Running is good for you both physically and mentally. It strengthens your heart lungs and muscles? It makes you more aware of your body. Running also improves your body so that you don't get sick as easily. It can even help you to stay more focused in school because exercise helps you to think more clearly. How do you get engaged in the sport if you don't know much about it? Most schools offer running programs. A simple internet search can help some in your find area. Then programs show you how running can offer competition or just be for fun. They also teach runners to set practical goals and take care of their bodies. Runners have great respect for each other because they know how difficult the sport can be. If you go to a race you'll see people cheering for all the runners. Running isn't always about how fast you are or how far you're going. It's about getting out there and doing it. Participation is more important than competition and effort is recognized over talent. If you're looking for more than just a sport running may be the perfect choice for you 1. You may find it interesting in go for A run. A. True B. False C. Not Given 2. The sport of running is easy. A True B. False C. Not Given 3. It is hard to End n safe environment for running.

2015年4月自学考试历年真题科目代码00888

绝密★考试结束前 全国2015 年 4月高等教育自学考试

电子商务英语试题 课程代码:00888 请考生按规定用笔将所有试题的答案涂、写在答题纸上。 选择题部分 注意事项: 1.答题前,考生务必将自己的考试课程名称、姓名、准考证号用黑色字迹的签字笔或钢笔 填写在答题纸规定的位置上。 2.每小题选出答案后,用2B铅笔把答题纸上对应题目的答案标号涂黑。如需改动,用橡 皮擦干净后 ,再选涂其他答案标号。不能答在试题卷上。 一、根据句子的意思选择一个正确的答案。(本大题共10小题 ,每小题1分,共10 分) 在每小题列出的四个备选项中只有一个是符合题目要求的,请将其选出并将“答题纸”的相应代码涂黑。错涂、多涂或未涂均无分。 1.Hewonadecisivevictory,16%aheadofhisnearest . A.rival B.candidate C.decade D.aly 2.A farmertodayisatleastthreetimesmoreproductivethanin1950. https://www.wendangku.net/doc/6b7354723.html,eful B.clasic C.clasical D.typical 3.Therewasa ofsuppresedangeronhisface. A.look B.see C.watch D.view 4.What’sthemater?Itsaysthenetworkis . A.done B.unreachable C.unstructured D.immobile 5.Itprovidesamoreeficientwayfortheclientto dataandinformationfromthe system. A.retrieve B.return C.build D.remember 6. somestudentsareabletofindemploymentaftergraduation,otherswilhaveto

自考大学语文历年真题(专科)

2011年4月全国自考大学语文试题及答案 一、单选题(本大题共20分,第小题1分) 1、 《五代史伶官传序》中,用“忧劳可以兴国,逸豫可以亡身”来说明盛衰之理,这种论证方法是( C ) A、例证法 B、概括法 C、对比法 D、类比法 2、《咬文嚼字》中,作者用“锱珠必较”这个成语所说明的道理是( D ) A、文字的运用一定要有创新精神 B、斟酌文字实际是调整思想情感 C、文学的语言更注重文字的联想意义 D、运用文字要有一字不肯放松的谨严 3、《吃饭》中运用的联想主要依据事物之间的( C ) A、对比性 B、时间统一性 C、相似性 D地点统一性 4、《冯谖客孟尝君》:"臣窃计,君宫中积珍宝,狗马实外厩,美人充下陈。”这里采用的修辞手法是( D ) A、比喻 B、比拟 C对偶 D排比 5、下列《张中丞传后叙》的语句中,作为类比论据,用以驳斥“城之陷,自远所分始,以后诟远”的是( C ) A、当其围守时,外无蚍蜉蚁子之援 B、乌有城坏,其徒俱死,独蒙愧耻求活 C、人之将死,其脏腑必有先受其病者 D、苟此不能守,虽避之他处何益 6、《马伶传》:“询其故,盖马伶耻出李伶下,已易衣遁矣。”这时使用的人物描写方法是( D ) A、行为描写和语言描写 B、语言描写和细节描写 C、细节描写和心理描写 D、心理描写和行为描写 7、《香市》的作者是( B ) A、鲁迅 B、茅盾 C、巴金 D、宗璞 8、下列《纪念付雷》的句子中,体现了作者的机趣和幽默的一句是( A ) A、后来知道他的别号就叫“怒庵”,也就不以为奇 B、我们都成为第五类分子,不便来往,彼此就不相闻问 C、只见他家门口贴满了大字报,门窗紧闭,真是“鸦雀无声” D 、朋友中像傅雷那样的毅然决然不自惜其生命的,还有好几个,我也都一律尊敬 9、《都江堰》:“那把长锸,千年来始终与金杖玉玺、铁戟钢锤反复辩论。”这里的“长锸”象征着( C ) A、治水事业的承续 B、李冰的坚定自信 C、一种冰清玉洁的政治纲领 D、一种简单有效的治水方法 10、《诗经秦风蒹葭》是一首( D ) A、山水诗 B、送别诗 C、悼亡诗 D、爱情诗 11、下列《陌上桑》诗句中,描写“少年”的是( B ) A、下担捋髭须 B、脱帽著帩头 C、来归相怨怒 D、十五颇有余 12、《虞美人》(春花秋月何时了)所写景物中,作者借以喻愁的是( D ) A、雕栏玉砌 B、小楼东风 C、春花秋月 D、一江春水 13、《长恨歌》中最具有浪漫色彩的内容是(D ) A、杨家女倾国倾城 B、唐明皇重色误国 C、杨贵妃马嵬殒命 D、太真女仙山寄情 14、《早雁》中,运用典故抒情的诗句是( B ) A、金河秋半虏弦开,云外惊飞四散哀 B、仙掌月明孤影过,长门灯暗数声来 C、须知胡骑纷纷在,岂逐春风一一回 D、莫厌潇湘少人处,水多菰米岸莓苔 15、贺铸《鹧鸪天》(重过阊门万事非)在构思上一个突出特点是始终关合( D ) A、梧桐与鸳鸯 B、旧栖与新垅 C、空床与南窗 D、自己与亡妻 16、融贯李清照《声声慢》(寻寻觅觅)全词的情感内容是( D ) A、丈夫新丧之哀 B、贫病交加之愁 C、人老珠黄之叹 D、狐苦无依之悲 17、《再别康桥》章节整齐,句式匀称,体现了诗歌的( A ) A、建筑美 B、音东美 C、竟象美 D、情感美 18、《祖国啊,亲爱的祖国》艺术表现的主要特点是( A ) A、新颖传神的意象运用 B、直抒胸臆的抒情笔法 C、古典诗词竟境的化用 D、排列方式的整齐匀称 19、婴宁“爱笑”的性格特点主要源于( A ) A、自然天性 B、鬼母教养 C、环境影响 D 、自我修养 20、最能体现《断魂枪》主旨的事件是( A ) A、王三胜买艺 B、沙子龙不传断魂枪 C、孙老者求艺 D、孙老者打败王三胜 二、多选题(本大题共5小题,每小题2分,共10分) 21、下列关于《我的世界观》的描述,正确的有( ACD ) A、倡导“为别人活着”的人生观 B、主要运用类比方法来阐明道理 C、对专制独裁和战争妖魔深恶痛绝 D、宣扬献身科学的“宗教感情” E、演讲风格坦诚自然,深刻锐利 22、下列《前赤壁赋》的语句中,包含使动词的有( AC ) A、舞幽壑之潜蛟 B、寄蜉蝣于天地 C、泣孤舟之嫠妇 D、挟飞仙以遨游 E、哀吾生之须臾 23、《我与地坛》中,作者赋于地坛的象征意义有( ACD ) A、深沉的母爱 B、建筑的壮美 C、“我”倔强的“心魂” D、复杂人生和沧桑命运 E、死亡的慰藉 24、《湘夫人》所描写的湘君的心情有( ABDE ) A、期约不遇的忧伤 B、向往理想的爱情 C、终成眷属的喜悦 D、反复追寻的执著 E、暂且逍遥的自慰 25、《麦琪的礼物》的结构精巧的体现有(A B )

历年真题2014年10月自考英语(二)试题和答案

2014年10月高等教育自学考试英语(二)试题 (课程代码 00015) 本试卷满分100分,考试时间150分钟。 考生答题注意事项: 1.本卷所有试题必须在答题卡上作答。答在试卷上无效,试卷空白处和背面均可作草稿纸。 2.第一部分为选择题。必须对应试卷上的题号使用2B铅笔将“答题卡”的相应代码涂黑。 3.第二部分为非选择题。必须注明大、小题号,使用0.5毫米黑色字迹签字笔作答。 4.合理安排答题空间,超出答题区域无效。 第一部分选择题 一、阅读判断(第1—10题,每题1分,共10分) 下面的短文后列出了10个句子,请根据短文的内容对每个句子作出判断:如果该句提供的是正确信息,选择A;如果该句提供的是错误信息,选择B;如果该句的信息文中没有提及,选择C。在答题纸相应位置上将答案选项涂黑。 The Stranger Who Changed My Life It was a sunny morning in the spring of 1966. I was driving a taxi, looking for a customer. While passing New York Hospital, I found a man running down the hospital steps, waving at me. I stopped. The man reached the taxi and jumped in. “The Airport, please,”he said. As always, I wondered about my passenger. Was this man a talker? After a few moments, he started saying, “How do you like driving a taxi?” “It’s OK” I said. “I make a living and meet interesting people sometimes.” “What do you do?” I asked. “I am a doctor at New York Hospital.” Many times during long rides, I’d developed a good relationship with my passengers and received very good advice from them. This time I decided to ask for his help. “Could I ask a favor of you?” He didn’t answer. “I have a son, 15, a good kid. He wants a job this summer. Is it possible that you get one for him?” He still wasn’t talking, and I was starting to feel foolish. Finally, he said, “Well, my students have a summer research project. Maybe he could join in. Have him send me his school record.” He left his address and paid me. It was the last time I ever saw him.

自考04183概率论与数理统计历年真题共14套汇总

全国2010年7月高等教育自学考试 概率论与数理统计(经管类)试题 课程代码:04183 一、单项选择题(本大题共10小题,每小题2分,共20分) 在每小题列出的四个备选项中只有一个是符合题目要求的,请将其代码填写在题后的括号内。错选、多选或未选均无分。 1.设A 、B 为两事件,已知P (B )=21,P (B A )=3 2 ,若事件A ,B 相互独立,则P (A )= ( ) A .9 1 B .6 1 C .31 D . 2 1 2.对于事件A ,B ,下列命题正确的是( ) A .如果A ,B 互不相容,则B ,A 也互不相容 B .如果B A ,则B A C .如果B A ,则B A D .如果A ,B 对立,则B ,A 也对立 3.每次试验成功率为p (0

-1)=l D .P (X<4)=l 5.已知连续型随机变量X 服从区间[a ,b ]上的均匀分布,则概率 32b a X P ( ) A .0 B . 3 1

C . 3 2 D .1 X 与Y 相互独立时,(p ,q )=( ) A .(51,15 1) B .(151,5 1) C .( 152101,) D .( 10 1152,) 7.设(X ,Y )的联合概率密度为 ,,, y ,x ,y x k y ,x f 其他01020)()(则k =( ) A .31 B. 2 1 C .1 D .3 8.已知随机变量X ~N (0,1),则随机变量Y =2X -1的方差为( ) A .1 B .2 C .3 D .4 9.设随机变量X 服从参数为0.5的指数分布,用切比雪夫不等式估计P (|X -2|≥3)≤( ) A.91 B.31 C. 2 1 D.1 10.设X 1,X 2,X 3,为总体X 的样本,3216 1 21kX X X T , 已知T 是E (x )的无偏估计,则k =( ) A.61 B.31 C.9 4 D. 2 1 二、填空题(本大题共15小题,每小题2分,共30分)

自考英语二历年真题及答案史上最全

2005年4月高等教育自学考试全国统一命题考试 英语(二)试卷及答案 (课程代码:00015) PART ONE (50 POINTS) Ⅰ.Vocabulary and Structure (10 points, 1 point for each item) 从下列各句四个选项中选出一个最佳答案,并在答题卡上将相应的字母涂黑。 1.Would’t you rather your child ______ successful with his study and won the scholarship? A. became B. become C. would become D. becomes 2. Although Tom is satisfied with his academic achievement, he wonders _______will happen to his family life. A. it B. that C. what D. this 3. We hope that all the measures against sandstorms, ________ was put forward by the committee, will be considered seriously at the meeting . A. while B. after C. since D. as 4. We cannot leave this tough job to a person_________. A. who nobody has confidence B. in whom nobody has confidence C. for whom nobody has confidence D. who everyone has confidence of 5. You are the best for the job _____ you apply your mind to it . A. until B. if only C. in case D. unless 6.Hey, leave _____!I hate people touching my hair. A. behind B. out C. off D. over 7.I thought the problem of water shortage would ________ at the meeting but nobody mentioned it. A. come up B. come up to C. come over D. come to 8.Mr.Smith , can I ________ you for a minute? I’d like to hear your opinion on this issue. A. say a word with B. have words with C. mention a word with D. have a word with 9.There is a deadlock (僵局) in the discussion when neither side gives ________ to the over . A. a way B. way C. the way D. its way 10. This type of desk and chair can be adjusted ________ the height of students at different ages. A. with B. for C. to D. in Ⅱ.Cloze Test (10 points, 1 point for each item) 下列短文中有十个空白,每个空白有四个选项。根据上下文要求选出最佳答案,并在答题卡上将相应的字母涂黑。 For over a hundred years Japan has consistently spent large sums of money and considerable human resources in an effort to obtain technology. Her ability to negotiate __11___ by the fact most of the technology she wanted was no commercial secrets. Japan’s __12__ has also been strengthened by the fact that her internal market was large, so that __13__ to this market could be offered to multinational companies as an attraction to them to grant licenses. Besides, Japan’s work force was disciplined, so it was capable __14__ applying the information it acquired. Finally, American and European companies, who were __15__ licensers, felt that the Japanese companies might take a large share of the world market __16__ they were not limited by licensing agreement.

自考_现代语言学历年真题及答案_2011年1月-2001年10月_全套!(sara_整理)

全国2011年1月自学考试现代语言学试题 I . Directions: Read each of the following statements carefully. Decide which one of the four choices best completes the statement and put the letter A, B, C, or D in the brackets. (2% × 10=20% ) 1.There is a difference between what we know, which is our linguistic competence, and how we use this knowledge in actual speech production and______, which is our linguistic performance. ( ) A. creation B. communication C. comprehension D. perception 2.The sounds that begin and end the words church and judge are voiceless and voiced ______,respectively. ( ) A. affricates B. stops C. velars D. palatals 3.Morphemes which represent such grammatical categories as number, tense, gender, and case are called _______ morphemes. ( ) A. free B. bound C. derivational D. inflectional 4.XP may contain more than just X. Phrases that are formed of more than one word usually contain head, ______and complement. ( ) A. modifier B. determiner C. qualifier D. specifier 5. ______ is concerned with the inherent meaning of the linguistic form while _______ deals with the relationship between the linguistic element and non-linguistic world of experience. ( ) A. Reference, sense B. Sense, referent C. Sense, reference D. Referent, sense 6. According to John Austin’s theory of speech act, a(n) ______ act is the act of expressing the speaker’s intention. ( ) A. prelocutionary B. locutionary C. illocutionary D. perlocutionary 7. Sound changes may include the loss of a sound or sounds. The so-called apocope refers to the omission of a vowel segment________. ( ) A. in word-initial B. in word-middle C. in word-final D. in syllable-initial 8. In contrast to Standard American English, Black English is the distinct variety of English native to black populations in the USA. We regard Black English as________. ( ) A. a regional dialect B. a social dialect C. a situational dialect D. an ethnic dialect 9. Among the language centers, ______is responsible for physical articulation of utterances. ( ) A. the motor area B. Broca’s area C. Wernicke’s area D. the angular gyrus 10. The language at ________ stage begins to reflect the distinction between sentence-types, such as negative sentences, imperatives, and questions. ( ) A. prelinguistic B. one-word C. two-word D. multiword II. Directions: Fill in the blank in each of the following statements with one word, the first letter of which is already given as a clue. Note that you are to fill in ONE word only, and you are not allowed to change the letter given. ( 1%×10=10% ) 11. A is one of the defining properties of human language, which means there is in general no natural relation between meanings and sounds. 12. Among the three branches of phonetics, the study of the physical properties of the streams of sounds produced in speech is known as a phonetics. 13. In using the morphological rules, we must guard against o in that different words may require different affixes to create the same meaning change. 14. Universal Grammar is a set of principles and p of grammar which, according to Chomsky, is inherited genetically by all human beings. 15. The synonyms such as economical, thrifty, and stingy are different in their e meaning. 16. Most of the violations of the four maxims under the Cooperative Principle give rise to conversational i . 17. When there is a need to reduce ambiguity and increase communicative clarity or expressiveness, then rule e occurs. 18. A pidgin is a m language developed as a medium of trade, or through other extended but limited contact, between groups of speakers who have no other language in common.

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