当前位置:文档之家› practice exam 2

practice exam 2

practice exam 2
practice exam 2

You should read the introductory material before you take this practice exam. Select the best answer for each question and click Score My Practice Exam.

A raw data file is listed below.

1---+----10---+----20---+---

01/05/1989 Frank 11

12/25/1987 June 13

01/05/1991 Sally 9

The following SAS program is submitted using this file as input:

data work.family;

infile 'file-specification';

input @1 date_of_birth mmddyy10.

@15 first_name $5.

@25 age 3;

run;

proc print data=work.family noobs;

run;

The following output is generated for the Work.Family data set:

Date_of_birth First_name Age

10597 Frank .

10220 June .

11327 Sally .

Which of the following statements is true regarding the Work.Family output?

a. The output has the expected data values.

b. The output does not have the expected data values due to an invalid data set name.

c. The output does not have the expected data values due to an invalid informat for Age only.

d. The output does not have the expected data values due to invalid informats for both Age and Date_of_birth.

The following SAS program is submitted:

data employees;

infile 'file-specification';

input @1 name $10.

@15 date date9

@25 department $;

run;

How many numeric variables are created?

a. 0

b. 1

c. 2

d. 3

What is the function of the FILENAME statement in SAS?

a. It associates a file reference with an external file.

b. It associates a library reference with an external file.

c. It associates a file reference with a relational database.

d. It associates a library reference with a relational databas

e.

A raw data file is listed below.

1---+----10---+----20---+---

Jose,47,210

Sue,,108

The following SAS program is submitted using this file as input:

data employeestats;

;

input name $ age weight;

run;

The following output is desired:

name age weight

Jose 47 210

Sue . 108

Which of the following INFILE statements completes the program and accesses the data correctly?

a. infile 'file-specification' pad;

b. infile 'file-specification' dsd;

c. infile 'file-specification' missover;

d. infile 'file-specification' dlm=',';

A raw data file is listed below.

1---+----10---+----20---+---

RANCH,1250,10MAR2004

SPLIT,1190,10/20/2004

CONDO,1400,17JUN2004

TWOSTORY,1810,12/31/2004

RANCH,1500,20JAN2004

SPLIT,1615,08/19/2004

The following SAS program is submitted using this file as input:

data work.condo_ranch;

infile 'file-specification' dsd;

input style $ @;

if style = 'CONDO' or style = 'RANCH' then

input sqfeet saledate : date9.;

else input sqfeet saledate : mmddyy10.;

run;

How many observations does the Work.Condo_ranch data set contain?

a. 0

b. 3

c. 5

d. 6

A raw data file is listed below.

1---+----10---+----20---+----30---+----40---+----50

TWOSTORY 1040 2 1SANDERS ROAD $55,850

CONDO 2150 4 2.5JEANS AVENUE $127,150

The following program is submitted using this file as input:

data work.houses;

infile 'file-specification';

run;

Which one of the following INPUT statements reads the raw data file correctly?

a. input @1 style $8.

+1 sqfeet 4.

+1 bedrooms 1.

@20 baths 3.

street 16.

@40 price dollar8;

b. input @1 style $8

+1 sqfeet 4.

+1 bedrooms 1.

@20 baths 3.

street $16

@40 price dollar8.;

c. input @1 style $8.

+1 sqfeet 4.

+1 bedrooms 1.

@20 baths 3.

street $16.

@40 price dollar8.;

d. input @1 style $8.

+1 sqfeet 4.

+1 bedrooms 1.

@20 baths 3

street 16.

@40 price dollar8.;

The following SAS program is submitted:

data both;

set M F(in = INF);

if INF then gen = 'F';

else gen = 'M';

by name;

run;

The SAS data sets Work.M and Work.F are each sorted by the variable Name. The data set Work.M contains 10 observations, and the data set Work.F contains

9 observations. How many observations does the Work.Both data set contain?

a. 0

b. 9

c. 10

d. 19

The following SAS program is submitted:

data test(drop=age);

set sashelp.class(keep=name age gender

height weight);

drop=gender;

newage=age+1;

run;

Sashelp.Class contains 5 variables. What is the result?

a. No variables are written to the data set Work.Test.

b. 4 variables are written to the data set Work.Test.

c. 5 variables are written to the data set Work.Test.

d. 6 variables are written to the data set Work.Test.

The following SAS program is submitted at the start of a new SAS session: libname sasdata 'SAS-data-library';

data sasdata.sales;

set sasdata.salesdata;

profit=expenses-revenues;

run;

proc print data=sales;

run;

The SAS data set Sasdata.Salesdata has 10 observations. Which one of the following answers explains why a report fails to generate?

a. The DATA step fails to execute.

b. The SAS data set Sales does not exist.

c. The SAS data set Sales has no observations.

d. The PRINT procedure statement syntax is incorrect.

The SAS data set Sasdata.Two is listed below.

Sasdata.Two

x y

5 2

5 4

3 6

The following SAS program is submitted:

data sasuser.one one;

set sasdata.two;

output one;

run;

What is the result?

a. The data set Sasuser.One has 0 observations and the data set One has

0 observations.

b. The data set Sasuser.One has 0 observations and the data set One has

3 observations.

c. The data set Sasuser.One has 3 observations and the data set One has

0 observations.

d. The data set Sasuser.One has 3 observations and the data set One has

3 observations.

The following SAS program is submitted:

data work.new;

y=10;

z=05;

x=12;

date=mdy(x,y,z);

run;

What is the value of the Date variable?

a. a character string with the value 12/10/05

b. a character string with the value 10Dec2005

c. a numeric value of 16780, which represents the SAS date value for December 10, 2005

d. a numeric value of 121005, which represents the SAS date value for December 10, 2005

The following SAS program is submitted:

data work.report;

set work.sales_info;

if qtr(sales_date) ge 3;

run;

The SAS data set Work.Sales_info has one observation for each month in the year 2005, and the variable Sales_Date contains a SAS date value for each of the 12 months. How many of the original 12 observations in Work.Sales_info

are written to the Work.Report data set?

a. 2

b. 3

c. 6

d. 9

The following SAS program is submitted:

data _null_;

set old(keep=sales1 sales2);

file 'file-specification';

put sales1 sales2;

run;

What is the result?

a. A raw data file is created with no delimiter separating the fields.

b. A raw data file is created with a space delimiter separating the fields.

c. A raw data file is created with a comma delimiter separating the fields.

d. No raw data file is created. The DATA step fails execution because no delimiter is specified.

The following SAS program is submitted:

data _null_;

set old = last;

put sales1 sales2;

if last then put 'This is the end of the data set';

run;

Which of the following options creates the variable Last?

a. END

b. EOF

c. PTOBS

d. TOTOBS

The SAS data set One is listed below.

One

X Y Z

1 A 27

1 A 33

1 B 45

2 A 52

2 B 69

3 B 70

4 A 82

4 C 91

The following SAS program is submitted:

data two;

set one;

by x;

if first.x;

run;

proc print data=two noobs;

run;

Which of the following reports is the result?

a. X Y Z

1 A 27

2 A 52

3 B 70

4 A 82

b. X Y Z

1 A 27

1 B 45

2 A 52

2 B 69

3 B 70

4 A 82

4 C 91

c. X Y Z

1 B 45

2 B 69

3 B 70

4 C 91

d. No report is produced. The PRINT procedure fails because the data set Two is not created in the DATA step.

The following SAS program is submitted:

libname sasdata 'SAS-data-library';

libname labdata 'SAS-data-library';

data labdata.boston

labdata.dallas(drop=city dest equipment);

set sasdata.cities(keep=orig dest city

price equipment);

if dest='BOS' then output labdata.boston;

else if dest='DFW' then output labdata.dallas;

run;

Which variables are output to both data sets?

a. Price and Orig only

b. City and Equipment only

c. City, Price, and Equipment only

d. City, Price, Orig, and Equipment only

The following SAS program is submitted:

proc contents data=sasuser.airplanes;

run;

What is produced as output?

a. the code that created the data set Sasuser.Airplanes

b. the data portion only of the data set Sasuser.Airplanes

c. the descriptor portion only of the data set Sasuser.Airplanes

d. the data and descriptor portions of the data set Sasuser.Airplanes Which SAS procedure displays a listing of the observations in the data portion of a SAS data set?

a. FSLIST

b. REPORT

c. TABULATE

d. CONTENTS

The observations in the SAS data set Work.Test are ordered by the values of the variable Salary. The following SAS program is submitted:

proc sort data=work.test;

run;

Which of the following statements completes the program and sorts the Work.Test data set by Name in descending order?

a. by desc name;

b. by name desc;

c. by descending name;

d. by name descending;

The following SAS program is submitted:

proc sort data=payroll;

by EmployeeIDNumber;

run;

How are the observations sorted?

a. Payroll is re-created in sorted order by EmployeeIDNumber.

b. Payroll is stored in original order, and a new data set Payroll is created in sorted order by EmployeeIDNumber.

c. Payroll is stored in original order, and a new data set Payrollsorted is created in sorted order by EmployeeIDNumber.

d. Payroll is re-created in sorted order by EmployeeIDNumber, and a new data set Payroll is created in sorted order by EmployeeIDNumber.

Which one of the following SAS programs creates a variable named City with a value of Chicago?

a. data work.airports;

AirportCode='ord';

if AirportCode='ORD' City='Chicago';

run;

b. data work.airports;

AirportCode='ORD';

if AirportCode='ORD' City='Chicago';

run;

c. data work.airports;

AirportCode='ORD';

if AirportCode='ORD' then City='Chicago';

run;

d. data work.airports;

AirportCode='ORD';

if AirportCode='ORD';

then City='Chicago';

run;

The SAS data set Employees is listed below.

Employees

Name Salary

Patel 60000

Payne 50000

Ellis 55000

Liu 45000

The following SAS program is submitted:

proc print data=employees;

where name ? 'e';

run;

What is the result?

a. No observations are written to the report.

b. The observation for Ellis only is written to the report.

c. The observations for Patel and Payne only are written to the report.

d. The observations for Patel, Payne, and Ellis only are written to the report.

The following SAS program is submitted:

data result;

lname="o'reiley";

;

run;

Which statement completes the program and creates the variable X with a value of O'Reiley?

a. x=propcase(lname);

b. x=propcase(lname,"'");

c. x=upcase(lname);

d. x=upcase(lname,"'");

The following SAS program is submitted:

data work.count;

if OriginalAmount= . then

OriginalAmount=100;

AdditionalItems=100;

OriginalAmount= .;

TotalCount=(OriginalAmount+AdditionalItems)+0;

run;

What is the value of the Totalcount variable in the output data set?

a. 0

b. 100

c. 200

d. . (missing numeric value)

Which SAS program renames two variables?

a. set work dept1

work dept2(rename=(jcode=jobcode)

(sal=salary));

b. set work dept1

work dept2(rename=(jcode=jobcode

sal=salary));

c. set work dept1

work dept2 rename=(jcode=jobcode

sal=salary);

d. set work dept1

work dept rename=jcode=jobcode

sal=salary;

The variable Name in the data set Employee has a format of $CHAR9. The variable Name in the data set Sales has a format of $CHAR15. The following SAS program is submitted:

data merged;

merge employee sales;

by name;

format name $CHAR12.;

run;

What is the format for the variable Name in the data set Merged?

a. $CHAR.

b. $CHAR9.

c. $CHAR12.

d. $CHAR15.

What is true of the sum statement in a SAS DATA step program?

a. It is valid only in conjunction with a SUM function.

b. It is not valid with the SET, MERGE, and UPDATE statements.

c. It adds the value of an expression to an accumulator variable and ignores missing values.

d. It does not retain the accumulator variable value from one iteration of the SAS DATA step to the next.

What is the correct form of the sum statement in a DATA step?

a. sum var1 var2;

b. var1 + var2;

c. total=var1 + var2;

d. total=sum(var1,var2);

The following SAS program is submitted:

data one;

address1='214 London Court';

run;

data output;

set one;

address1=;

run;

Which of the following completes the program and changes the word Court to Drive in the value of the variable Address1?

a. tranwrd(address1,'Court','Drive')

b. trantab(address1,'Court','Drive')

c. translate(address1,'Court','Drive')

d. transform(address1,'Court','Drive')

The following SAS program is submitted:

data work.test;

title="Hitchhiker's Guide to the SAS Language";

word=substr(title,13,5);

run;

What is the value of the variable Word in the output data set?

a. Guid

b. ide t

c. s Guid

d. Guide to the SAS Language

The following SAS program is submitted:

data work.products;

Product_Number=5461;

Item='1001';

Item_Reference=item||'/'||product_Number;

run;

What is the result?

a. The variable Item_reference is created with a missing value.

b. The variable Item_reference is created with the value 1001/5461.

c. The variable Item_reference is created with the value 1001/ 5461.

d. The variable Item_reference is not created. The program fails to execute because of errors.

The following SAS program is submitted:

data work.month;

date=put('13mar2000'd,ddmmyy10.);

run;

What are the type and length of the variable Date in the output data set?

a. The type is numeric and the length is 8 bytes.

b. The type is numeric and the length is 10 bytes.

c. The type is character and the length is 8 bytes.

d. The type is character and the length is 10 bytes.

A SAS program is submitted and the following is written to the SAS log: SAS Log

178 data days;179 do i='SUN' 'MON' 'TUES'; ----- ------ 388 200

ERROR 388-185: Expecting an arithmetic operator.

ERROR 300-322: The symbol is not recognized and

will be ignored.

180 day=i!!'DAY';

181 end;

182 run;

What caused the error?

a. The list of values should be in parentheses.

b. The values should be separated by commas.

c. The values should not be in quotation marks.

d. Character values are not allowed on a DO loop statement.

The following SAS program is submitted:

data work.clients;

calls=6;

do while(calls le 6);

calls+1;

end;

calls+1;

run;

What is the result?

a. The variable Calls has a value of 6 in the output data set.

b. The variable Calls has a value of 7 in the output data set.

c. The variable Calls has a value of 8 in the output data set.

d. The variable Calls has no valu

e. The program fails to execute.

The following SAS program is submitted:

data stats;

set revenue;

array weekly{5} mon tue wed thu fri;

total=weekly{i}*.25;

output;

end;

run;

Which one of the following DO statements completes the program and processes the elements of the weekly array?

a. do i=1-5;

b. do i=1 to 5;

c. do weekly=1 to 5;

d. do weekly{i}=1 to 5;

The following program is submitted:

data work.test;

array diff_sales{3};

run;

Which of the variables are written to the Work.Test data set?

a. Diff_sales only

b. Diff_sales3 only

c. Diff_sales, Diff_sales1, Diff_sales2

d. Diff_sales1, Diff_sales2, Diff_sales3

The following SAS program is submitted:

proc report data=work.houses nowd;

column style price;

where price<100000;

title;

run;

The following list report is generated:

Style

of homes Asking

price

-------------------------------------------------------------------------------- CONDO $80,050

$79,350

$55,850

TWOSTORY $69,250

Which of the following DEFINE statements completes the program and produces the desired output?

a. define price/sum format=dollar9. width=10;

b. define style/display width=9.;

define price/sum format=dollar9. width=10;

c. define style/group width=9;

define price/sum format=dollar9. width=10;

d. define style/order width=9;

define price/sum format=dollar9. width=10;

The following SAS program is submitted:

proc sort data=houses;

by style;

run;

proc print data=houses;

run;

The following list report is generated:

style bedrooms baths price

-------------------------------------------------------------------------------- CONDO 2

3

4

2 1.5

2.5

2.5

2.0 $80,050

$79,350

$127,150

$110,700

TWOSTORY 4

2

2

4 3.0

1.0

1.0

2.5 $107,250

$55,850

$569,250

$102,950

Which of the following SAS statements completes the program and creates the desired report?

a. id style;

var bedroom baths price;

b. id style;

var style bedrooms baths price;

c. id style;

by style;

var bedrooms baths price;

d. id style;

by style;

var style bedrooms baths price;

The following SAS program is submitted:

proc freq data=class;

run;

The SAS data set Class has two character variables and three numeric variables. How many tables are generated?

a. 0

b. 2

c. 3

d. 5

The following SAS program is submitted:

proc means data=sasuser.houses mean;

run;

The following report is produced:

style N Obs Variable Label Mean

CONDO 4 bedrooms

baths Number of bedrooms

Number of bathrooms 2.7500000

2.1250000

RANCH 4 bedrooms

baths Number of bedrooms

Number of bathrooms 2.2500000

2.0000000

SPLIT 3 bedrooms

baths Number of bedrooms

Number of bathrooms 2.6666667

1.8333333

大学英语(3)第二次作业题及答案.doc

第2次作业 一、阅读理解(本大题共100分,共5小题,每小题20分) 1. Prehistoric men and women enjoyed a more varied diet than people do now, since they ate species of plant and several hundreds thousands types of living things. But only a tiny percentage of these were ever domesticated. Modern shops have hastened a trend towards specialization which began in the earliest days of agriculture. The food of the rich countries has become cheaper relative to wages. It is speedily distributed in supermarkets. But the choice annually becomes less and less great. Even individual foods themselves become more standardized. We live in the world of carrot specially blunted in order to avoid making a hole in the bag, and the tomato grown to meet a demand for a standard weight of weighting tomatoes to a kilo. Siri von Reis asks: "Only the three major cereals (谷物类食物)and perhaps ten other widely cultivated species stand between famine and survival for the world" s human population and a handful of drug plants has served Western civilization for several thousand years. A rather obvious question arises: Are we missing something?” After all, there are 800 000 species of plant on earth. (1). Tn prehistoric times people. A.ate much more than we do today B.lived mainly on plant food C.had a wide-ranging diet D.were more fussy about what they ate (2). Most of us have come to expect A. no variation in our diet B. a reduction in food supplies C. a specialist diet D. food conforming to a set standard (3). The specialization of food was started by

模拟试题(二)含答案

《中国古建筑史》模拟试题(二) 一、选择题(每题1分,共30分) 1.清明上河图所表现的是(c )城的风貌。 A、西汉长安B、唐长安C、北宋汴梁D、明南京 2.《营造法式》是哪个朝代的著作?(c) A汉B唐C宋D清 3.我国砖普遍用于民居砌墙始于哪个朝代?(d) A秦B唐C宋D明 4.下面哪个城市不属于我国七大古都?(d) A杭州B南京C开封D苏州 5.唐长安城位于汉长安城的:(a) A东南B西南C东北D西北 6.按尊卑顺序排列,下列哪组屋顶形式是正确的?(c) A歇山顶、庑殿顶、硬山顶、悬山顶 B庑殿顶、歇山顶、硬山顶、悬山顶 C庑殿顶、歇山顶、悬山顶、硬山顶 D歇山顶、庑殿顶、悬山顶、硬山顶 原始社会晚期黄河流域最具代表性的建筑类型是:(b) A干阑式建筑B木骨泥墙房屋C穴居D巢居 9.历代帝王陵墓中“因山为陵”的是:(b) A秦代B唐代C宋代D明代 河南洛阳龙门石窟开凿于:(a) A北魏B北周C隋D唐 我国用琉璃瓦的历史始于哪个朝代?(a) A南北朝B唐C春秋D西周 13.佛光寺东大殿平面柱网为:(c) A单槽B双槽C金厢斗底槽D分心槽 14.我国已知最早采用榫卯技术构筑房屋的实例是:(c) A浙江余姚河姆渡遗址B西安半坡村遗址C河南偃师二里头宫殿遗址D陕西岐山凤雏村遗址

15.原始社会晚期长江流域最具代表性的建筑类型是:(a) A干阑式建筑B木骨泥墙房屋C穴居D巢居 16.我国已知最早的庭院式建筑是:(b) A西安半坡遗址B陕西岐山凤雏村遗址C河南偃师二里头宫殿遗址D浙江余姚河姆渡村遗址 17.我国已知最早、最严整的四合院实例是:(b) A湖北蕲春建筑遗址B陕西岐山凤雏村遗址C河南偃师二里头宫殿遗址D安阳小屯村殷墟宫殿遗址我国瓦的普遍使用是在哪个时期?(b) A西周B春秋C战国D秦 19.我国砖的使用始于:(a) A西周B春秋C战国D秦 20.著名的河北赵县安济桥的设计人是:(b) A李诚B李春C宇文恺D鲁班 21.《园冶》的作者是:(a) A李诚B李春C计成D苏东坡 22.我国佛教的四大名山是指:(a) A五台山、九华山、峨嵋山、普陀山 B五台山、武当山、峨嵋山、普陀山 C武当山、九华山、峨嵋山、普陀山 D武当山、五台山、峨嵋山、九华山 23.著名的《考工记》成书于:(b) A春秋B西周C战国D商 24.明朝天坛祈年殿三檐颜色为:(d) A全部青色B全部绿色C全部淡蓝色D分别为青、黄、绿三色 26.《园冶》是哪个朝代的著作?(a) A明B唐C宋D清 28.现存甘肃敦煌莫高窟开凿于:(a) A北魏B北周C隋D唐 原始社会晚期黄河流域最具代表性的建筑类型是:(b) A干阑式建筑B木骨泥墙房屋C穴居D巢居 30、我国宋代的建筑官书是。(c) A、《木经》 B、《考工记》 C、《营造法式》 D、《工程做法》

教育心理学考试试题及答案

教育心理学试题及答案 时间:2015-03-07 分类:期末试题 一、选择题(共15小题,每小题2分,共30分) 1、下列哪项不归之于学习与教学的系统过程中。(C ) A、学习过程 B、教学过程 C、反应过程 D、评价/反思过程 2、在皮亚杰看来,当学生的思维已超越对具体的可感知事物的依赖,能作出一定的概括时,他的思维水平已进入( D ) A、感知动作阶段 B、前运算阶段 C、具体运算阶段 D、形式运算阶段 3、下列规律中,不属于尝试——错误学习论的主要规律的是(D ) A、效果律 B、练习律 C、准备律 D、接近律 4、学生由过分重视成绩名次而产生的学习动机属于(B ) A、认知内驱力 B、自我提高内驱力 C、附属内驱力 D、交往内驱力 5、举一反三属于(A ) A、水平迁移 B、垂直迁移 C、一般迁移 D、负迁移 6、学习正方体、长方体的体积计算公式后,再学习一般立方体的体积计算公式,这属于(C ) A、并列结合学习 B、下位学习 C、上位学习 D、相关类属学习 7、运算技能属于哪种技能(B ) A、操作技能 B、心智技能 C、动作技能 D、运动技能 8、通过对要学习的新材料增加相关信息来达到对新材料的理解和记忆的方法,如补充细节、举出例子,或使之与其他观念形成联想等。这种促进知识保持的方法是( B ) A、过度学习 B、深度加工 C、组块化编码 D、及时复习 9、创造思维的核心是(C ) A、直觉思维 B、形象思维 C、发散思维 D、聚合思维 10、根据柯尔伯格的分类,中学生的道德主要处在 A、前习俗水平 B、习俗水平 C、后习俗水平 D、他律水平 11、心理辅导的主要目标是学会调适和(D ) A、诊断问题 B、克服障碍 C、行为矫正 D、寻求发展 12、在教学设计时,下列哪项不是分析教学任务涉及的主要内容(D ) A、确定学生原有基础 B、分析使能目标 C、分析支持性条件 D、分析学习结果 13、课堂里某种占优势的态度与情感的综合状态被称为(C ) A.群体凝聚力B.群体规范C.课堂气氛D.人际关系 14、衡量一个测验能否测量出所要测量的特征或品质的指标被称为(A ) A.效度B.区分度C.信度D.难度 15、福勒等认为,当教师较多地关注"学生是否喜欢我"、"同事怎样看我"、"领导怎样评价我" 时,他此时主要处在教师成长历程的( A ) A、关注生存阶段B 、关注情境阶段C、关注学生阶段D、关注成就阶段 二、填空题:每小题1分,共20分。 16、教育心理学是一门研究学校情境中学与教的基本心理规律的科学。 17、在中学生人格发展的过程中,随着年龄的增长,同伴的影响在某种程度上甚至超过父母的影响。

工程造价管理试题及答案

工程造价管理试题及答 案 Standardization of sany group #QS8QHH-HHGX8Q8-GNHHJ8-HHMHGN#

工程造价管理试题及答案 单选 1、工程造价的两种管理是指( B )。 A 建设工程投资费用管理和工程造价计价依据管理 B 建设工程投资费用管理和工程价格管理 C 工程价格管理和工程造价专业队伍建设管理 D 工程造价管理和工程造价计价依据管理 2、进口设备运杂费中运输费的运输区间是指( C )。 A 出口国供货地至进口国边境港口或车站 B 出口国的边境港口或车站至进口国的边境 港口或车站C 进口国的边境港口或车站至工地仓库D 出口国的边境港口或车站至工地仓库 3、某个新建项目,建设期为3年,分年均衡进行贷款,第一年贷款400万元,第二年贷款 500万元,第三年贷款400万元,贷款年利率为10%,建设期内利息只计息不支付,则建设期贷款利息为( A )万元。 A 205.7 B 356.27 C 521.897 D 435.14 4、已知某挖土机挖土的一个工作循环需2分钟,每循环一次挖土0.5m3,工作班的延续时间为8小时,时间利用系数K=0.85,则每台班产量定额为( C )。 A 12.8 m3/台班 B 15 m3/台班 C 102 m3/台班 D 120 m3/台班 5、某项目总投资为3000万元,单项工程总费用为1800万元,建筑单位工程费用为700万元,建设单位管理费率为2.4%,则建设单位管理费为( B )万元。 A 72 B 43.2 C 28.8 D 16.8 6、工程定额计价法计算建安工程造价由( D )组成。 A 直接工程费、间接费、利润、增值税 B 直接费、间接费、利润、营业税 C 直接工程费、间接费、利润、营业税 D 直接费、间接费、利润、税金 7、工程量清单计价规范中门窗工程量按( C )计算。 A 框外围平方米 B 洞口平方米 C 樘 D 数量 8、建设项目可行性研究报告的主要内容是( C )。 A 市场研究、技术研究和风险预测研究 B 经济研究、技术研究和综合研究 C 市场研究、技术研究和效益研究 D 经济研究、技术研究和资源研究 9、项目可行性研究阶段的投资估算,是( C )的重要依据。 A 主管部门审批项目建议书 B建设贷款计划 C项目投资决策 D 项目资金筹措 10、当初步设计达到一定深度,建筑结构比较明确时,编织建筑工程概算可以采用( C )。 A 单位工程指标法 B 概算指标法 C 概算定额法 D 类似工程概算法 11、审查施工图预算的方法很多,其中全面、细致、质量高的方法是( C )。 A 分组计算审查法 B 对比法 C 全面审查法 D 筛选法 12、根据《招标投标法》,两个以上法人或者其他组织组成一个联合体,以一个投标人的身份共同投标是( A )。 A 联合投标 B 共同投标 C 合作投标 D 协作投标 13、在采用成本加酬金合同价时,为了有效地控制工程造价,下列形式中最好采用( D )。 A 成本加固定金额酬金 B 成本加固定百分比酬金 C 成本加最低酬金 D 最高限额成本加固定最大酬金 14、根据合同文本,工程变更价款通常由( C )提出,报()批准。 A 工程师、业主 B 承包商、业主 C 承包商、工程师 D 业主、承包商 15、竣工决算的计量单位是( A )。 A 实物数量和货币指标 B 建设费用和建设成果 C 固定资产价值、流动资产价值、无形 资产价值、递延和其他资产价值 D 建设工期和各种技术经济指标

天津大学在线作业做题答案管理学(第二次作业)

天津大学在线作业-管理学-第二次作业 作业答题结果 题目正确答案只要控制工作做好,完全可以防止管理错误。B 企业生产计划的制定属于战略性决策。B 跳一跳,摘桃子,说明目标必须具有()B 主要是根据决策人的直觉、经验和判断能力来进行的决策是(...B 某民营企业面对竞争激烈的市场,多次主动承接一些特别客户提出的...C 某企业位于一个小镇,周围农民经常向企业提出一些无理要求,地方...A 某啤酒酿造企业A决定,停止从多年来一直为自己生产玻璃瓶的生产...D 一般来讲计划必须从计划中产生,计划必须先于控制。A 计划制定中的滚动计划法是动态的和灵活的,它的主要特点是(...D 计划按照范围讲,可以分为程序性计划和非程序性计划。B 本次作业总分

比较优选原则主要是指任何决策都有利有弊,故决策者只能在利弊之...A 企业的具体环境中最主要的是: ( )A 应用头脑风暴法时,需要限制参与人发言以保证讨论围绕主题进行。B 计划制定中的滚动计划法是动态的和灵活的,它的主要特点是(...D 经济学中所谓“资源是稀缺的”,这一说法隐含的深意是:( ...C 决策拟定的方案越多越好。B 美国克莱斯勒汽车公司的总经理艾柯卡普曾经说过,“等到委员会讨...D 主要是根据决策人的直觉、经验和判断能力来进行的决策是(...B 某啤酒酿造企业A决定,停止从多年来一直为自己生产玻璃瓶的生产...D 决策首先必须识别机会或是发现问题。A 本次作业总分 作业答题结果 题目正确答案企业生产计划的制定属于战略性决策。B 行为决策学派认为决策是一个优选过程,所以决策结果是基于已有资...B 某民营企业面对竞争激烈的市场,多次主动承接一些特别客户提出的...C 一般来讲计划必须从计划中产生,计划必须先于控制。A 国家宏观经济政策是构成企业以下哪种类型的要素之一?( )C

模拟试卷2及答案

模拟试卷二 一、选择题(请将正确答案的序号填写在题中的括号中。每题2分,满分30分) 1、在XY平面上,某圆弧圆心为(0,0),半径为80,如果需要刀具从(80,0)沿该圆弧到达(0,80),程序指令为(B )。 (A)G02 XO.Y80.I80.0 F300 (B)G03 XO.Y80.I-80.0 F300 (C)G02 X8O.Y0.J80.0 F300 (D)G03 X80.Y0.J-80.0 F300 2、在G00程序段中,(C)值将不起作用。 (A)X (B)S (C)F (D)T 3、下列(D )不适应在加工中心上生产。 (A)需要频繁改型的零件(B)多工位和多工序可集中的零件 (C)难测量的零件(D)装夹困难的零件 4、数控机床中把脉冲信号转换成机床移动部件运动的组成部分称为(C )。 (A)控制介质(B)数控装置(C)伺服系统(D)机床本体 5、数控机床的旋转轴之一B轴是绕( B )旋转的轴。 (A)X轴(B)Y轴(C)Z轴(D)W轴 6、使用(B )可使刀具作短时间的无进给光整加工,常用于车槽、镗平面、锪孔等场合,以提高表面光洁度。 (A)G02 (B)G04 (C)G06(D)G00 7、数控机床坐标轴确定的步骤为(C )。 (A)X→Y→Z (B)X→Z→Y (C)Z→X→Y 8、下列(B )的精度最高。 (A)开环伺服系统(B)闭环伺服系统 (C)半闭环伺服系统(D)闭环、半闭环系统 9、(B )命令是有条件停止。 (A)G00 (B)M01 (C)M05 (D)M19 10、在CRT/MDI面板的功能键中,用于刀具偏置数设置的键是(B )。 (A)POS (B)OFSET (C)PRGRM (D)SYSTEM 11、精车轮廓时,为保证零件加工面光洁度的一致性,应使用(C )。 (A)G94 (B)G95 (C)G96 (D)G87 12、单段运行功能有效时,(B )。 (A)执行一段加工结束(B)执行一段保持进给(C)连续加工(D)程序校验 13、程序“D01 M98 P1001”的含义是(D )。 (A)调用P1001子程序(B)调用O1001子程序 (C)调用P1001子程序,且执行子程序时用01号刀具半径补偿值 (D)调用O1001子程序,且执行子程序时用01号刀具半径补偿值 14、执行程序后G98 G81R3 Z-5 F50后,钻孔深度是(A )。 (A)5mm (B)3mm (C)8mm (D)2mm 15、(B )与虚拟制造技术一起,被称为未来制造业的两大支柱技术。 (A)数控技术(B)快速成形法(C)柔性制造系统(D)柔性制造单元 二、判断题(请将判断结果填入括号中。正确的填“√”,错误的填“×”。每题2分,满分30分) ()1、机床回零后,显示的机床坐标位置一定为零。 (√)2、加工中心具有刀库和刀具交换装置。

2017年心理学考试试题及答案

2017年心理学考试试题及答案

填空题 1.词语是概念的物质外壳,概念的内涵与外延成反比关系。 2.操作技能的特点表现为:动作对象的物质性、动作进行的外显性、动作结构的展开性。 3.斯坦福—比奈量表通常以智力年龄(心理年龄)和智力商数来表示儿童的智力水平。 4.激情具有爆发性、短暂性和指向性的特点。 5.青少年性别意识的发展分为以下四个阶段:对性知识和异性的探求与了解;对异性的疏离与排斥;对异性的关注与接近;对异性的追求与爱恋。简答题(本大题共3个小题,每小题8分,共24分) 1.马斯洛的需要层次论的主要内容是什么?(1)人类有五种基本需要,即生理需要、安全需要、社会需要(也称归属与爱的需要)、尊重需要和自我实现需要。(2)这些需要呈现一个由低到高的排列层次。(3)只有低级需要基本满足后,才会出现更高一级的需要。 2.心理咨询的基本原则有哪些?(1)理解支持原则;(2)保密性原则;(3)耐心倾听和细致询问原则;(4)疏导抚慰和启发教育原则;(5)促进成长的非指导性原则;(6)咨询、治疗与预防相结合的原则 3.影响问题解决的因素主要有哪些?(1)问题情境与问题表达方式;(2)联想与原型启发;(3)定势与功能固着;(4)个体的经验水平;(5)情绪与动机对问题解决的动力和阻力作用;(6)个性因素(能力、性格等)的作用。 论述题(本题满分15分) 1.论述促进社会态度改变的途径。(1)增加所提供的信息的影响力。①选择高威信与高吸引力的传达者来提供有关信息,提供信息时适度激发人们的情绪。但应注意,高威信造成的态度变化总的趋势是随时间推移而减

少。③将沟通信息与人的原有态度的差异调整到适当的水平。③利用生动的演讲方式来提供信息。 (2)弱化个体对态度改变的自我防御。①信息传达者尽可能使自己的立场向信息接受者靠拢,避免命令式的给定结论。例如某些广告是向公众介绍产品,甚至站在公众的立场上指出产品的某些不足,从而增加人们对产品的信任感。②适当通过分散人们注意而减弱其自我防御倾向。③用各种特定惠待激发人们的认同。 (3)避免过度理由效应的出现。 心理学部分 选择题 1.心理学成为一门独立科学的标志是(B) A.笛卡尔提出“反射”概念 B.冯特1879年创立第一个心理实验室 C.巴甫洛夫提出“两种信号系统”学说 D.斯金纳的操作性条件反射理论 2.下列属条件反射的是( D) A.眨眼反射 B.吸吮反射C.膝跳反射 D.信号反射 3.野战部队身穿迷彩服以达到与周围背景相混淆的效果,这主要是利用知觉的(B) A.整体性 B.选择性C.理解性 D.恒常性 4.根据动机的成败归因理论,一个学生将考试失败的原因归于个人能力时(B) A.是一种正确的归因倾向 B.教师应予以引导和纠正C.会产生积极的情绪情感体验 D.会产生侥幸心理 5.受过去经验与习惯影响而产生的心理活动的准备状态是(B)

工程造价试题(答案)

湖北第二师范学院继续教育学院2010—2011学年第二学期期中考试《建筑工程造价管理》课程考试试卷(B卷) 教学部门:年级专业: 学生姓名:学号: 考试方式:(开卷、闭卷)……………………………………………………………………………………………………………… 一、单项选择题(每小题2分,共16分) 1 下列不是工程造价管理的特点是(D) A 时效性 B 公正性 C 规范性 D 不准确性 2 设一次贷款本金为300万元,采用单利的模式计算利息,年利率是百分之六,经过五年后的本 利之和为(C)万元 A 300 B 350 C 390 D 400 3 工程量的计算单位中,以体积计算时,它的单位为(A) A 立方米 B 立方厘米 C 立方毫米 D 英尺 3 已知产量定额是10单位,那么时间定额是(D) A 10 B 0.5 C 1 D 0.1 4 已知一个零件的制作需要经过两个工序,第一个工序的时间定额是1工日,第二个工序的时间定额是4工日,那么这个零件的产量定额是(C) A 5 B 4 C 0.2 D 0.1 5 某投资香米在建设初期一次性投入100万元,经营期为10年,投产后每年可以获得净现金流量为10万,那么该项目的年现金系数为(C) A 10 B 1000 C 10 D 100 6 PI的含义是(C) A 利润 B 资金流量 C 现金指数 D 毛利 应该(A) 7 当项目盈利时,CI CO A 大于0 B 大于等于0 C 小于0 D 等于0 8 某项目的报告期综合人工单价为10,参照工程综合人工单价是8,那么人工费调整系数为(B) A 0.1 B 0.25 C 25 D 10

工程力学(二)第二次作业题及答案.doc

占g 占5占 g 占g a b c d A.B.C.D. 第2次作业 一、单项选择题(本大题共25分,共10小题,每小题2.5分) 1. 对于图示各点应力状态,属于单向应力状态的是()。 2. 同一根梁分别在图a 和图b 所示情况下受到自由落体冲击,冲击物的重量和 下落高度相同,己知图a 情况下的冲击动荷系数K 二90,则关于图b 情况下的 冲 击动荷系数,下述结论中正确的是()。 A. K=110 B. K>90 C. K*90 D. K 二90。 3. 质点作匀速圆周运动,则质点( )。 A. 动量不变,动能也不变 B. 对圆心的动量矩不变,动能也不变 C. 动量不变、对圆心的动量矩不变 D. 动量、对圆心的动量矩和动能均不变。 4. 图示简支梁中点只承受集中力F 时,最大转角为0 _ ,应变能为V 挪); 中点只承受集中力偶M 时,最大挠度为梁的应变能为V £(M )O 图当同时在中 点施加F 和M 时,梁的应变能有以下四种答案,试判断哪一种是正确的。 T | ______ I ________ [ ~21/3 | (a ) (b )

A.V E(F) + V c ( M) B.V t(F)+ V E(M)+ M ° 皿 C.V VE(F)+ V E(M)+ FWg D.V £(f) + V )+1/2(M 0+ FIR,) £(M 5.关于低碳钢材料拉伸的力学性质,正确的论述是()o A.屈服的本质是沿与轴线成45度方向上的剪切滑移 B.屈服滑移线与轴线成60。方向发生 C.强度指标应取强度极限 D.延伸率大致等于5% 6 .试选出下述正确的说法 A.质点系的动能是质点系内各质点动能的算术和。 B.B忽略机械能和其他能量之间的转换,则只要有力对其作功,物体的动能就会增加。 C.平面运刚体的动能可由其质量及质心速度完全确定。 D.内力不能改变质点系的动能。 7.图示四根压杆的材料和截面均相同,它们在纸平面内失稳的先后次序有以下四种答案,试指出哪一个是正确的。()

大学英语模拟题二及答案

2008年4月统考模拟试题二 第一部分:交际英语(共10小题;每小题1分,满分10分) 此部分共有10个未完成的对话,针对每个对话中未完成的部分有4个选项,请从A、B、C、D四个选项中选出可以填入空白处的最佳选项,并用铅笔将答题卡上的相应字母涂黑。 1. --Can you turn down the radio, please? -- _________. A. Oh, I know B. I'm sorry, I didn't realize it was that loud C. I'll keep it down next time D. Please forgive me 2. -- Hello, I'd like to speak to Mark, please. -- _________. A. Yes, I'm Mark B. This is Mark speaking C. It's me here D. This is me 3. --Can I give you a hand. It seems pretty heavy. -- _________. A. It's none of your business B. Sorry, I don't know you C. Thanks, I can manage that D. No, it's not heavy 4. --I'd like to make a reservation for two days. My name is Wang Ming-Ming. -- _________. A. Single room or double room B. You're too late for the room C. We don't have any room D. Our hotel is very expensive 5. -- Would you fill in this registration form? _________? -- I don't know how to do that. A. What should I write B. It's too difficult. C. Where is the form D. Would you please help me 6. --Look, would you like to go out tomorrow evening? --________. My parents are coming to see me. A. I'm afraid I can't tomorrow evening B. I don't like to go out with you C. I have no time tomorrow evening D. I won't go out with you 7. --Do you mind turning off the TV? I'm studying for the exam.

《建设工程造价案例分析》真题及答案

某工程项目发包人与承包人签订了施工合同,工期4个月,工程内容包括A、B两项分项工程,综合单价分别为360.00元/m3、220.00元/m3;管理费和利润为人材机费用之和的16%;规费和税金为人材机费用、管理费和利润之和的10%,各分项工程每月计划和实际完成工程量及单价措施项目费用见表5.1。 表5.1 分项工程工程量及单价措施项目费用数据表 总价措施项目费用6万元(其中安全文明施工费3.6万元);暂列金额15万元。 合同中有关工程价款结算与支付约定如下: 1、开工日10天前,发包人应向承包人支付合同价款(扣除暂列金额和安全文明施工费)的20%作为工程预付款,工程预付款在第 2、3个月的工程价款中平均扣回); 2、开工后10日内,发包人应向承包人支付安全文明施工费的60%,剩余部分和其它总价措施项目费用在第2、3个月平均支付; 3、发包人按每月承包人应得工程进度款的90%支付;

4、当分项工程工程量增加(或减少)幅度超过15%时,应调整综合单价,调整系数为0.9(或1.1);措施项目费按无变化考虑; 5、B分项工程所用的两种材料采用动态结算方法结算,该两种材料在B分项工程费用中所占比例分别为12%和10%,基期价格指数均为100。施工期间,经监理工程师核实及发包人确认的有关事项如下: 1、第二个月发生现场计日工的人材机费用6.8万元; 2、第四个月B分项工程动态结算的两种材料价格指数分别为110和120。 问题: 1、该工程合同价为多少万元?工程预付款为多少万元? 2.第2个月发包人应支付给承包人的工程价款为多少万元? 3、到第三个月末B分项工程的进度偏差为多少万元? 4、第四个月A、B两项分项工程的工程价款各位多少万元?发包人在该月应支付给承包人的工程价款为多少万元? 答案: 1、合同价[(360×1000+220×700)/10000+7+6+15]×(1+10%)=87.34万元 工程预付款[(360×1000+220×700)/10000+7+6-3.6]×(1+10%)×20%=13.376万元 2、第2、3月支付措施费=(6-3.6×60%)/2=1.92万元

最新《模拟电子技术》模拟试题二及答案

模拟电子技术》模拟试题二 、填空题(每空 1 分共32 分) 1、P 型半导体中空穴为()载流子,自由电子为()载流子。 2、PN结正偏时(),反偏时(),所以PN结具有()导电性。 3、反向电流是由()载流子形成,其大小与( 4、三极管是()控制元件,场效应管是( 5、当温度升高时,三极管的等电极电流I( 6、晶体三极管具有放大作用时,发射结( 7、三极管放大电路共有三种组态()、( 8、为了稳定三极管放大电路和静态工作点,采用( 9、负反馈放大电路和放大倍数Af= ( ), )有关,而与外加电压()。)控制元件。 ),发射结压降UBE()。 ),集电结()。 )、()放大电路。 )负反馈,为了减小输出电阻采用() 对于深度负反馈Af= ()。 10、共模信号是大小(),极性()的两个信号。 11、乙类互补功放存在()失真,可以利用()类互补功放来克服。 12、用低频信号去改变高频信号的频率称为(),低频信号称为()信号,高频信号称高频 13、共基极放大电路的高频特性比共射极电路(),fa= ()f B。 14、要保证振荡电路满足相位平衡条件,必须具有()网络。 15、在桥式整流电阻负载中,理想二极管承受最高反压是()。 二、选择题(每空 2 分共30 分) 1 、三端集成稳压器CW781 2 的输出电压是()。 A、12V B、5V C、9V 2、用直流电压表测得放大电路中某三极管各管脚电位分别是2V、6V、2.7V ,则三个电极分别是该管 是()型。 A、( B、 C、E) B、(C、B、E) C、(E、C、B) 3、共射极放大电路的交流输出波形上半周失真时为( A、饱和 B、截止 C、交越 D、频率 4、差分放大电路是为了()而设置的。 A、稳定Au B、放大信号 C、抑制零点漂移 5、共模抑制比是差分放大电路的一个主要技术指标,它反映放大电路()能力 A、放大差模抑制共模 B、输入电阻高 C、输出电阻低 6、L M386 是集成功率放大器,它可以使电压放大倍数在()之间变化。 A、0~20 B、20~200 C、200~1000 A 、0.45 B 、0.9 C 、1.2 8、当集成运放线性工作时,有两条分析依据()()。 A、U-?U+ B、I-?1+?0 C、UO=Ui D、Au=1 9、对功率放大器的主要要求有()()()。 A、U0高, B、PO大 C、效率高 D、Ri大 E、波形不失真 10、振荡器的输出信号最初由()而来的。 A、基本放大器 B、选频网络 C、干扰或噪声信号 三、分析计算题负反馈。 )。 ), D、(PNP) E、(NPN) )失真,下半周失真时为()失真7、单相桥式整流电容滤波电路输出电压平均值Uo= ( ) Uz

历年心理学试题及答案(1)

历年试题一 一、选择题(每小题2分,共20 分)。 1、注意的两个基本特征是。 A、集中性和选择性 B、指向性和集中性 C、集中性和紧张性 D、选择性和稳定性 2、具有维持身体平衡,调节肌肉紧张和协调人的随意运动的机能。 A、小脑 B、大脑 C、丘脑 D、网状结构 3、新生儿生下来遇冷就会哭是。 A、经典条件反射 B、无条件反射 C、操作性条件反射 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、坚定沉着、稳重忍耐,但反应缓慢呆板是()的特点。 B、胆汁质 C、粘液质 D、抑郁质 二、填空题(每空1分,共10分) 1、辩证唯物主义哲学观认为,人的心理的实质是______。 2、______和______是高级神经系统活动的二种基本过程。 3、个性心理是每个个体所具有的稳定的心理现象,它包括______和个性心理特征两个方面。 4、反射弧由、、、和五部分构成。 、有明确的目的,但又不需要付出一定意志努力的注意称为。 三、判断正误(正确在题后括弧内打“”,错误打“×”。每 小题1分,共10分) 1、人的心理成熟水平是与其年龄完全成正比的。 ()

大学英语(1)第二次作业题及答案.doc

第2次作业 一、阅读理解(本大题共100分,共5小题,每小题20分) 1. There is a widespread belief that people who get on in life may be successful not because they deserve it, but because of influential friends or the right background. Sometimes it may just be a comforting and harmless belief, while at the other extreme it can be very destructive. I once met a brilliant young engineer who worked in a chemical plant. Because of her knowledge and experience, she should have been promoted to Production Manager. Instead, the job went to a man who was totally unsuited for the post. Everyone knew that he only got it because he was politically acceptable to his superiors. This injustice demoralized the young engineer and many of her col leagues. Tt al so meant that the factory was much 1 ess efficient than i t could have been. All the same, we should not be pessimistic. More and more, the modern world depends on having people who are in the job because they are good enough, not just because their face fits. There is a story of a factory owner who sent for an engineer to see to a machine, which would not go. He examined it, then took out a hammer and tapped it, once. The machine started up immediately. When he presented his bill, the owner protested, "This can't be right! $100 just for tapping a machine with a hammer?z,The engineer wrote out a new bill: 〃For tapping a machine, $1; for knowing where to tap it, $99.〃 (1). It is believed that some people have succeeded in life because? A. they feel superior to others B. they are both influential and powerful c. they have some special advantages D.

模拟试题二及答案

模拟试题二及答案 一、(共20分,每小题5分)计算题 1.应用冲激函数的性质,求表示式23()t t dt δ∞-∞ ?的值。 解:23()300t t dt δ∞-∞ =?=? 2.判断系统是否为线性时不变系统:()(2)r t e t =。 解: 线性时变系统 3.有一LTI 系统,当激励)()(1t u t x =时,响应)(6)(1t u e t y t α-=,试求当激励 ())(23)(2t t tu t x δ+=时,响应)(2t y 的表示式。(假定起始时刻系统无储能)。 解: ()()t t u t u t dt -∞?=?, ()()d t u t dx δ= ,该系统为LTI 系统。 故在()t u t ?激励下的响应1 26()6()(1)t t t y t e u t dt e ααα ---∞ =?=--? 在()t δ激励下的响应2 2()(6())6()6()t t d y t e u t e u t t dx αααδ--= =-+ 在3()2()tu t t δ+激励下的响应1818 ()12()12()t t y t e e u t t αααδαα --=--+ 4.试绘出时间函数)]1()([--t u t u t 的波形图。

二、(15分,第一问10分,第二问5分)已知某系统的系统函数为2 5 ()56 s H s s s += ++,试求(1)判断该系统的稳定性。(2)该系统为无失真传输系统吗?请写出判断过程。 21255 ()56(2)(3) 2,s s H s s s s s s s ++= = ++++∴=-=-3,位于S复平面的左半平面 所以,系统稳定. (2) 由于05 ()()3) jwt j H j Ke j j ωωωω-+= ≠++2(,不符合无失真传输的条件,所以该系统 不能对输入信号进行无失真传输。 三、(10分)已知周期信号f (t )的波形如下图所示,求f (t )的傅里叶变换F (ω)。 f (t )的傅里叶级数为 1j 1()e d t n T F f t t T ω-= ??3 j π2111 2 221()(1)e d 2n t G t G t t --??=--???? ?π sin 41(1)πn n n ??=--? ? 所以()()F F f t ω=????()2π πn n F n δω∞=-∞ =-∑()π sin 421(1)πn n n n n δω∞ =-∞ ??=---? ?∑ 四、(15分)求下列函数的拉普拉斯逆变换。

心理学基础复习试题及答案

心理学基础知识试题及答案(一) 一、单项选择题(一个正确答案。每小题1分,共20分) 1.人本主义心理学的代表人物是( B) A.华生 B.马斯洛 C.霍尔 D.杜威 2.心理学属于( C) A.自然科学 B.社会科学 C.自然科学和社会科学双重性质的科学 D.哲学 3.有预定目的,需要一定意志努力的注意是(A ) A.随意注意 B.不随意注意 C.随意后注意 D.无意注意 4.觉察刺激之间微弱差别的能力称为( D) A.绝对感觉阈限 B.绝对感受性 C.差别感觉阈限 D.差别感受性 5.“入芝兰之室,久而不闻其香”描述的是(A ) A.适应现象 B.听觉适应 C.嗅觉刺激 D.味觉刺激 6.信息在短时记忆中一般只保持( B)秒钟。 A. 1~2 B. 20~40 C. 60~70 D. 70~80 7.学习新信息对已有旧信息回忆的抑制作用叫(B ) A.前摄干扰 B.倒摄干扰 C.消退抑制 D.超限抑制 8.短时记忆容量有限,为了使其包含更多的信息,可采用的方式是(C ) A.感觉登记 B.注意 C.组块 D.复述 9.概念的内涵指的是概念所反映的事物的本质,外延指的是概念的范围。概念的内涵增加的同时,也就是使本质的条款更多,它的外延就(C )了。 A.大 B.多 C.小 D.增加 10.先有一个目标(目的),它与当前的状态之间存在着差异,人们认识到这个差异,就要想出某种办法采取活动(手段)来减小这个差异。这种解决问题的方法或策略是( C) A.爬山法 B.逆向工作法 C.手段—目的分析法 D.尝试错误法 11.流体智力和晶体智力说是由美国心理学家(B )提出来的。 A.斯皮尔曼 B.卡特尔 C.瑟斯顿 D.吉尔福特 12.我国古代思想家王充所说的“施用累能”是指(B ) A.学校教育对智力的影响 B.社会实践对智力的影响 C.遗传对智力的影响 D.家庭环境对智力的影响 13.个体的成就动机中含有两种成分:追求成功的倾向和( B)

2018年《建设工程造价管理》真题及答案

2018年一级造价工程师《造价管理》真题及答案(完整版) 一、单项选择题(共60题,每题1分。每题的备选项中,只有1个最符合题意) 1、下列工程计价文件中,由施工承包单位编制的是()。 A. 工程概算文件 B. 施工图结算文件 C. 工程结算文件 D. 竣工决算文件 2、下列工作中,属于工程发承包阶段造价管理工作内容的是()。 A. 处理工程变更 B. 审核工程概算 C. 进行工程计量 D. 编制工程量清单 3、根据《工程造价咨询企业管理力法》,工程造价咨询企业资质有效期为()年。 A. 2 B. 3 C. 4 D. 5 4、根据《工程造价咨询企业管理办法》,乙级工程造价咨询企业中专职从事工程造价专业工作的人员不应少于()人。 A. 6 B. 8 C. 10 D. 12 5、美国工程造价估算中,材料费和机械使用费估算的基础是()。 A. 现行市场行情或市场租赁价

B. 联邦政府公布的上月信息价 C. 现行材料及设备供应商报价 D. 预计项目实施时的市场价 6. 根据《建设工程质量管理条例》在正常使用条件下,给排水管道工程的最低保修期限为()年 A. 1 B. 2 C. 3 D. 5 7. 根据《招标投标法实施条例》,依法必须进行招标的项目可以不进行招标的情形是()。 A. 受自然环境限制只有少量潜在投标人 B. 需要釆用不可替代的专利或者专有技术 C. 招标费用占项目合同金额的比例过大 D. 因技术复杂只有少量潜在投标人 8. 根据《招标投标法实施条例》,投标人认为招投标活动不符合法律法规规定的,可以自知道或应当知道之日起()日内向行政监督部门投诉。 A. 10 B. 15 C. 20 D. 30 9. 根据《合同法》与无权代理人签订合同的相对人可以催告被代理人在()个月内予追认。 A. 1 B. 2 C. 3 D. 6 10. 根据《合同法》,当事人既约定违约金,又约定定金的,一方违约时,对方的正确处理方式

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