SAS base 123 训练题 免费

SAS base 123 训练题 免费
SAS base 123 训练题 免费

Exam:A00-201

Titl e :SAS Base Programming Ver : 11.30.06

QUESTION 1

In the following SAS program, the input data files are sorted by the NAMES variable:

libnametemp 'SAS-data-library';

data temp.sales;

merge temp.sales

work.receipt;

by names;

run;

Which one of the following results occurs when this program is submitted?

A. The program executes successfully and a temporary SAS data set is created.

B. The program executes successfully and a permanent SAS data set is created.

C. The program fails execution because the same SAS data set is referenced for both read and write operations.

D. The program fails execution because the SAS data sets on the MERGE statement are in two different libraries.

Answer: B

QUESTION 2

When the following SAS program is submitted, the data set SASDATA.PRDSALES contains 5000 observations:

libnamesastemp 'SAS-data-library';

options obs = 500;

proc print data = sasdata.prdsales (firsttobs = 100);

run;

options obs = max;

proc means data = sasdata.prdsales (firsttobs = 500);

run;

How many observations are processed by each procedure?

A. 400 for PROC PRINT

4500 for PROC MEANS

B. 401 for PROC PRINT

4501 for PROC MEANS

C. 401 for PROC PRINT

4500 for PROC MEANS

D. 500 for PROC PRINT

5000 for PROC MEANS

Answer: B

QUESTION 3

The following SAS program is submitted:

data work.new;

length word $7;

amount = 7;

if amount = 5 then word = 'CAT';

else if amount = 7 then word = 'DOG';

else work = 'NONE!!!';

amount = 5;

run;

Which one of the following represents the values of the AMOUNT and WORD variables?

A. amount word

5 DOG

B. amount word

5 CAT

C. amount word

7 DOG

D. amount word

7 ' ' (missing character value)

Answer: A

QUESTION 4

Which one of the following is true of the SUM statement in a SAS DATA step program?

A. It is only valid 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.

Answer: C

QUESTION 5

The following SAS program is submitted:

data work.sets;

do until (prod gt 6);

prod + 1;

end;

run;

Which one of the following is the value of the variable PROD in the output data set?

A. 5

B. 6

C. 7

D. 8

Answer: C

QUESTION 6

The following SAS program is submitted:

proc print data = sasuser.houses;

run;

proc means data = sasuser.shoes;

run;

Which one of the following OPTIONS statements resets the page number to 1 for the second report?

A. option pageno = 1;

B. option pagenum = 1;

C. options reset pageno = 1;

D. options reset pagenum = 1;

Answer: A

QUESTION 7

The contents of the raw data file PRODUCT are listed below:

----|----10---|----20---|----30

24613 $25.31

The following SAS program is submitted:

data inventory;

infile 'product';

input idnum 5. @10 price;

run;

Which one of the following is the value of the PRICE variable?

A. 25.31

B. $25.31

C. . (missing numeric value)

D. No value is stored as the program fails to execute due to errors.

Answer: C

QUESTION 8

The contents of the raw data file TYPECOLOR are listed below:

----|----10---|----20---|----30

daisyyellow

The following SAS program is submitted:

data flowers;

infile'typecolor';

input type $ 1-5 +1 color $;

run;

Which one of the following represents the values of the variables TYPE and COLOR?

A. type color

daisy yellow

B. type color

daisy ellow

C. type color

daisyyellow (missing character value)

D. No values are stored as the program fails to execute due to syntax errors. Answer: B

QUESTION 9

A raw data record is listed below:

----|----10---|----20---|----30

son,Travis,

The following output is desired:

relation firstname

son Travis

Which one of the following SAS programs reads the data correctly?

A. data family / dlm = ',';

infile 'file-specification';

input relation $ firstname $;

run;

B. option dlm = ',';

data family;

infile 'file-specification';

input relation $ firstname $;

run;

C. data family;

infile 'file-specification' option dlm = ',';

input relation $ firstname $;

run;

D. data family;

infile 'file-specification';

input relation $ firstname $ / dlm = ',';

run;

Answer: C

QUESTION 10

The following SAS program is submitted:

libnamerawdata1 'location of SAS data library';

filename rawdata2 'location of raw data file';

data work.testdata;

infile

input sales1 salse2;

run;

Which one of the following is needed to complete the program correctly?

A. rawdata1

B. rawdata2

C. 'rawdata1'

D. 'rawdata2'

Answer: B

QUESTION 11

The following SAS program is submitted and reads 100 records from a raw data file:

data work.total;

infile 'file-specification' end = eof;

input name $ salary;

totsal+ salary;

run;

Which one of the following IF statements writes the last observation to the output data set?

A. if end = 0;

B. if eof = 0;

C. if end = 1;

D. if eof = 1;

Answer: D

QUESTION 12

The contents of the raw data file FURNITURE are listed below:

----|----10---|----20---|----30

chair,,table

chair,couch,table

The following SAS program is submitted:

data stock;

infile 'furniture' dsd;

input item1 $ item2 $ item3 $;

run;

Which one of the following is the value of the variable named ITEM2 in the first observation of the output data set?

A. table

B. ,table

C. . (missing numeric value)

D. ' ' (missing character value)

Answer: D

QUESTION 13

A raw data file is listed below:

RANCH,1250,2,1,Sheppard Avenue,"$64,000"

SPLIT,1190,1,1,Rand Street,"$65,850"

CONDO,1400,2,1.5,Market Street,"80,050"

TWOSTORY,1810,4,3,Garris Street,"$107,250"

RANCH,1500,3,3,Kemble Avenue,"$86,650"

SPLIT,1615,4,3,West Drive,"94,450"

SPLIT,1305,3,1.5,Graham Avenue,"$73,650"

The following SAS program is submitted using the raw data file as input:

data work.condo_ranch;

infile'file-specification' dsd;

input style $ @;

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

input sqfeet bedrooms baths street $ price : dollar10.;

run;

How many observations does the WORK.CONDO_RANCH data set contain?

A. 0

B. 3

C. 5

D. 7

Answer: D

QUESTION 14

A raw data file is listed below:

RANCH,1250,2,1,Sheppard Avenue,"$64,000"

SPLIT,1190,1,1,Rand Street,"$65,850"

CONDO,1400,2,1.5,Market Street,"80,050"

TWOSTORY,1810,4,3,Garris Street,"$107,250"

RANCH,1500,3,3,Kemble Avenue,"$86,650"

SPLIT,1615,4,3,West Drive,"94,450"

SPLIT,1305,3,1.5,Graham Avenue,"$73,650"

The following SAS program is submitted using the raw data file as input:

data work.condo_ranch;

infile'file-specification' dsd;

input style $ @;

if style = 'CONDO' or style = 'RANCH';

input sqfeet bedrooms baths street $ price : dollar10.;

run;

How many observations will the output data set contain?

A. 0

B. 3

C. 5

D. 7

Answer: B

QUESTION 15

The following SAS program is submitted:

data numrecords;

infile 'file-specification';

input @1 patient $15.

relative $ 16-26 @;

if relative = 'children' then

input @54 diagnosis $15. @;

else if relative = 'parents' then

input @28 doctor $15.

clinic $ 44-53

@54 diagnosis $15. @;

input age;

run;

How many raw data records are read during each iteration of the DATA step during execution?

A. 1

B. 2

C. 3

D. 4

Answer: A

QUESTION 16

The following SAS program is submitted:

data work.empsalary;

set work.people (in = inemp)

work.money(in = insal);

if insal and inemp;

run;

The SAS data set WORK.PEOPLE has 5 observations, and the data set

WORK.MONEY has 7 observations.

How many observations will the data set WORK.EMPSALARY contain?

A. 0

B. 5

C. 7

D. 12

Answer: A

QUESTION 17

The contents of two SAS data sets named EMPLOYEE and SALARY are listed below:

EMPLOYEE SALARY

name age name salary

Bruce 30 Bruce 40000

Dan 35 Bruce 35000

Dan 37000

Dan .

The following SAS program is submitted:

data work.empsalary;

merge work.employee (in = inemp)

work.salary(in = insal);

by name;

if inemp and insal;

run;

How many observations will the data set WORK.EMPSALARY contain?

A. 2

B. 4

C. 5

D. 6

Answer: B

QUESTION 18

The SAS data sets WORK.EMPLOYEE and WORK.SALARY are listed below: WORK.EMPLOYEE WORK.SALARY

fnameage fname salary

Bruce 30 Bruce 25000

Dan 40 Bruce 35000

Dan 25000

The following SAS program is submitted:

data work.empdata;

merge work.employee

work.salary;

by fname;

totsal+ salary;

run;

How many variables are output to the WORK.EMPDATA data set?

A. 3

B. 4

C. 5

D. No variables are output to the data set as the program fails to execute due to errors. Answer: B

QUESTION 19

The SAS data sets WORK.EMPLOYEE and WORK.SALARY are shown below: WORK.EMPLOYEE WORK.SALARY

fnameage name salary

Bruce 30 Bruce 25000

Dan 40 Bruce 35000

Dan 25000

The following SAS program is submitted:

data work.empdata;

by fname;

totsal+ salary;

run;

Which one of the following statements completes the merge of the two data sets by the FNAME variable?

A. merge work.employee

work.salary (fname = name);

B. merge work.employee

work.salary (name = fname);

C. merge work.employee

work.salary (rename = (fname = name));

D. merge work.employee

work.salary (rename = (name = fname));

Answer: D

QUESTION 20

The following SAS program is submitted:

proc sort data=work.employee;

by descending fname;

proc sort sort data=work.salary;

by descending fname;

data work.empdata;

merge work.employee

work.salary;

by fname;

run;

Which one of the following statements explains why the program failed execution?

A. The SORT procedures contain invalid syntax.

B. The merged data sets are not permanent SAS data sets.

C. The data sets were not merged in the order by which they were sorted.

D. The RUN statements were omitted after each of the SORT procedures.

Answer: C

QUESTION 21

The following SAS SORT procedure step generates an output data set:

proc sort data = sasuser.houses out = report;

by style;

run;

In which library is the output data set stored?

A. WORK

B. REPORT

C. HOUSES

D. SASUSER

Answer: A

QUESTION 22

The following SAS DATA step is submitted:

libnametemp 'SAS-data-library';

data temp.report;

set sasuser.houses;

newvar= price * 1.04;

run;

Which one of the following statements is true regarding the program above?

A. The program is reading from a temporary data set and writing to a temporary data set.

B. The program is reading from a temporary data set and writing to a permanent data set.

C. The program is reading from a permanent data set and writing to a temporary data set.

D. The program is reading from a permanent data set and writing to a permanent data set. Answer: D

QUESTION 23

Which one of the following SAS DATA steps saves the temporary data set named MYDATA as a permanent data set?

A. libname sasdata 'SAS-data-library';

data sasdata.mydata;

copy mydata;

run;

B. libname sasdata 'SAS-data-library';

data sasdata.mydata;

keep mydata;

run;

C. libname sasdata 'SAS-data-library';

data sasdata.mydata;

save mydata;

run;

D. libname sasdata 'SAS-data-library';

data sasdata.mydata;

set mydata;

run;

Answer: D

QUESTION 24

The following SAS DATA step is submitted:

data sasdata.atlanta

sasdata.boston

work.portland

work.phoenix;

set company.prdsales;

if region = 'NE' then output bostan;

if region = 'SE' then output atlanta;

if region = 'SW' then output phoenix;

if region = 'NW' then output portland;

run;

Which one of the following is true regarding the output data sets?

A. No library references are required.

B. The data sets listed on all the IF statements require a library reference.

C. The data sets listed in the last two IF statements require a library reference.

D. The data sets listed in the first two IF statements require a library reference. Answer: D

QUESTION 25

The following SAS DATA step executes on Monday, April 25, 2000:

data newstaff;

set staff;

start_date=today();

run;

Which one of the following is the value of the variable START_DATE in the output data set?

A. a character string with the value '04/25/2000'

B. a character string with the value 'Monday, April 25, 2000'

C. the numeric value 14725, representing the SAS date for April 25, 2000

D. the numeric value 04252000, representing the SAS date for April 25, 2000 Answer: C

QUESTION 26

The following SAS program is submitted:

data work.new;

mon= 3;

day = 23;

year =2000;

date = mdy(mon,day,year);

run;

Which one of the following is the value of the DATE variable?

A. a character string with the value '23mar2000'

B. a character string with the value '03/23/2000'

C. a numeric value of 14692, which represents the SAS date value for March 23, 2000

D. a numeric value of 3232000, which represents the SAS date value for March 23, 2000 Answer: C

QUESTION 27

The following SAS program is submitted:

data revenue;

set year_1;

var1 = mdy(1,15,1960);

run;

Which one of the following values does the variable named VAR1 contain?

A. 14

B. 15

C. 1151960

D. '1/15/1960'

Answer: A

QUESTION 28

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 2000 and the variable SALES_DATE which contains a SAS date value for each of the twelve months.

How many of the original twelve observations in WORK.SALES_INFO are written to the WORK.REPORT data set?

A. 2

B. 3

C. 6

D. 9

Answer: C

QUESTION 29

The following SAS program is submitted:?

libnametemp 'SAS-data-library';

data work.new;

set temp.jobs;

format newdate mmddyy10.;

qdate= qtr(newdate);

ddate= weekday(newdate);

run;

proc print data = work.new;

run;

The variable NEWDATE contains the SAS date value for April 15, 2000.

What output is produced if April 15, 2000 falls on a Saturday?

A. Obs newdate qdate ddate

1 APR152000

2 6

B. Obs newdate qdate ddate

1 04/15/2000

2 6

C. Obs newdate qdate ddate

1 APR152000

2 7

D. Obs newdate qdate ddate

1 04/15/2000

2 7

Answer: D

QUESTION 30

A raw data record is shown below:

07Jan2002

Which one of the following informats would read this value and store it as a SAS date value?

A. date9.

B. ddmonyy9.

C. ddMMMyy9.

D. ddmmmyyyy9.

Answer: A

QUESTION 31

The contents of the SAS data set PERM.JAN_SALES are listed below: VARIABLE NAME TYPE

idnumcharacter variable

sales_datenumeric date value

A comma delimited raw data file needs to be created from the PERM.JAN_SALES data set. The SALES_DATE values need to be in a MMDDYY10 form.

Which one of the following SAS DATA steps correctly creates this raw data file?

A. libname perm 'SAS-data-library';

data_null_;

set perm.jan_sales;

file 'file-specification' dsd = ',';

put idnum sales_date : mmddyy 10.;

run;

B. libname perm 'SAS-data-library';

data_null_;

set perm.jan_sales;

file 'file-specification' dlm = ',';

put idnum sales_date : mmddyy 10.;

run;

C. libname perm 'SAS-data-library';

data_null_;

set perm.jan_sales;

file 'file-specification';

put idnum sales_date : mmddyy 10. dlm = ',';

run;

D. libname perm 'SAS-data-library';

data_null_;

set perm.jan_sales;

file 'file-specification';

put idnum sales_date : mmddyy 10. dsd = ',';

run;

Answer: B

QUESTION 32

The contents of the SAS data set named PERM.STUDENTS are listed below:

Alfred 14

Alice13

Barbara 13

Carol 14

The following SAS program is submitted using the PERM.STUDENTS data set as input:

Libnameperm 'SAS-date-library';

data students;

set perm.students;

file 'file-specification';

put name $15. @5 age 2.;

run

Which one of the following represents the values written to the output raw data file?

A. ----|----10---|----20---|----30

Alfred 14

Alice 13

Barbara 13

Carol 14

B. ----|----10---|----20---|----30

Alfr14

Alic13

Barb13a

Caro14

C. ----|----10---|----20---|----30

Alfr14ed

Alic13e

Barb13ara

Caro14l

D. ----|----10---|----20---|----30

Alfred 14

Alice 13

Barbara 13

Carol 14

Answer: B

QUESTION 33

The contents of the raw data file TEAM are listed below:

----|----10---|----20---|----30

Janice 10

Henri 11

Michael 11

Susan 12

The following SAS program is submitted:

infile 'team';

input name $15. age 2.;

file 'file-specification';

put name $15. =5 age 2.;

run;

Which one of the following describes the output created?

A. a raw data file only

B. a SAS data set named GROUP only

C. a SAS data set named GROUP and a raw data file

D. No output is generated as the program fails to execute due to errors.

Answer: C

QUESTION 34

The following SAS program is submitted:

data_null_;

set old;

put sales1 sales2;

run;

Where is the output written?

A. the SAS log

B. the raw data file that was opened last

C. the SAS output window or an output file

D. the data set mentioned in the DATA statement

Answer: A

QUESTION 35

The following SAS program is submitted:

data_null_;

set old (keep = prod sales1 sales2);

file 'file-specification';

put sales1 sales2;

run;

Which one of the following default delimiters separates the fields in the raw data file created?

A. : (colon)

B. (space)

C. , (comma)

D. ;(semicolon)

Answer: B

QUESTION 36

The following SAS program is submitted:

data allobs;

set sasdata.origin (firstobs = 75 obs = 499);

run;

The SAS data set SASDATA.ORIGIN contains 1000 observations.

How many observations does the ALLOBS data set contain?

A. 424

B. 425

C. 499

D. 1000

Answer: B

QUESTION 37

The SAS data set named COMPANY.PRICES is listed below: COMPANY.PRICES

prodidprice producttype sales returns

K12S 5.10 NETWORK 15 2

B132S 2.34 HARDWARE 300 10

R18KY2 1.29 SOFTWARE 25 5

3KL8BY 6.37 HARDWARE 125 15

DY65DW 5.60 HARDWARE 45 5

DGTY23 4.55 HARDWARE 67 2

The following SAS program is submitted:

libnamecompany 'SAS-data-library';

data hware inter soft;

set company.prices (keep = producttype price);

if price le 5.00;

if producttype = 'HARDWARE' then output HWARE;

else if producttype = 'NETWORK' then output INTER;

else if producttype = 'SOFTWARE' then output SOFT;

run;

How many observations does the HWARE data set contain?

A. 0

B. 2

C. 4

D. 6

Answer: B

QUESTION 38

The SASDATA.BANKS data set has five observations when the following SAS

program is submitted:

libnamesasdata 'SAS-date-library';

data allobs;

set sasdata.banks;

capital=0;

do year = 2000 to 2020 by 5;

capital + ((capital+2000) * rate);

output;

end;

How many observations will the ALLOBS data set contain?

A. 5

B. 15

C. 20

D. 25

Answer: D

QUESTION 39

A raw data file is listed below:

----|----10---|----20---|----30

John McCloskey 35 71

June Rosesette 10 43

TinekeJones 9 37

The following SAS program is submitted using the raw data file as input: data work.homework;

infile 'file-specification';

input name $ age height;

if age LE 10;

run;

How many observations will the WORK.HOMEWORK data set contain?

A. 0

B. 2

C. 3

D. No data set is created as the program fails to execute due to errors. Answer: C

QUESTION 40

The following SAS program is submitted:

proc contents data = sasuser.airplanes;

run;

Which one of the following is produced as output?

A. the data portion of every data set in the SASUSER library

B. the data portion of the data set SASUSER.AIRPLANES only

C. the descriptor portion of every data set in the SASUSER library

D. the descriptor portion of the data set SASUSER.AIRPLANES only

Answer: D

QUESTION 41

The following SAS program is submitted:

proc datasets lib = sasuser;

contents data = class varnum;

quit;

Which one of the following is the purpose of the VARNUM option?

A. to print a list of variable names

B. to print the total number of variables

C. to print a list of the variables in alphabetic order

D. to print a list of the variables in the order they were created

Answer: D

QUESTION 42

Which one of the following SAS procedures displays the data portion of a SAS data set?

A. PRINT

B. FSLIST

C. CONTENTS

D. DATASETS

Answer: A

QUESTION 43

On which portion(s) of a SAS data set does the PRINT procedure report?

A. the data portion only

B. the descriptor portion only

C. the descriptor portion and the data portion

D. neither the data portion nor the descriptor portion

Answer: A

QUESTION 44

The following SAS program is submitted:

data work.test;

set work.staff (keep = jansales febsales marsales);

array diff_sales{3} difsales1 - difsales3;

工程造价管理试题及答案

工程造价管理试题及答 案 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 建设工期和各种技术经济指标

高一上学期期末测试题及答案

2007年度高一上学期期末测试题 仙村中学 林凯 一.选择题(每题5分,共50分) 1.已知集合{}1,2,3A =,集合B 满足{}1,2,3A B =,则集合B 的个数为( ) A 3 B 6 C 8 D 9 (改编自必修1 12 P B 组1) 2.{}{}|34,|2A x x B x x =-<≤=<-,则A B =( ) A {}|34x x -<≤ B {}|2x x < C {}|32x x -<<- D {}|4x x ≤ (改编自必修1 8 P 例5) 3.已知函数(1)(0)()0(0)(1)(0)x x x f x x x x x +>?? ==??-???? D 2|3x x ? ? >??? ? (改编自必修1 74 P A 组7) 7.已知一个几何体它的主视图和左视图上都是一个长为4,宽为2的矩形,俯视图是一个

2020年电工基础知识竞赛试题123题(附答案)

2020年电工基础知识竞赛试题123题(附答案) 1、电压互感器有三种接线方式,分别为:Y,y,d接线,Y,y接线,V,v接线。 2、发电机并列条件:待并发电机与运行系统的电压、频率、相位之差小于规定值。 3、零序电流保护主要由零序电流(电压)滤过器、电流继电器和零序方向继电器三部分组成。 4、继电保护装置必须满足选择性、快速性、灵敏性和可靠性四个基本要求。 5、电流继电器的主要技术参数是动作电流、返回电流和返回系数。 6、电力生产的几个主要环节是发电厂、变电所、输电线。 7、二次回路的电路图按任务不同可分为三种,即原理图、展开图和安装接线图。 8、所谓不对应原理是指控制开关的位置与断路器的位置不对应。 9、变压器油在多油断路器中起绝缘和灭弧作用,在少油断路器中仅起灭弧作用。 10、检查二次回路的绝缘电阻应使用1000V的摇表。 11、安装接线图包括:屏面布置图、屏背面接线图和端子排图。 12、中心信号装置包括中心事故信号和中心预告信号两大部分。 13、电力系统中的消弧线圈按工作原理可以分为谐振补偿、过补偿、欠补偿三种方式。 14、安全工作规程是中规定:设备对地电压高于250V为高电压;在250V以下为低电压;安全电压为36V以下;安全电流为10mA以下。

15、值班人员因工作需要移开遮栏进行工作,要求的安全距离是10kV时0.7m,35kV时1.0m,110kV时1.5m,220kV时3.0m。 16、雷雨天气需要巡视室外高压设备时,应穿绝缘靴,并不得接近避雷器、避雷针和接地装置。 17、遇有电气设备着火时,应立即将该设备的电源切断,然后进行灭火。 18、值班运行工的常用工具有钢丝钳、螺丝刀、电工刀、活板手、尖嘴钳、电烙铁和低压试电笔等。 19、在变压器的图形符号中Y表示三相线圈星形连接。 20、变电站(所)控制室内信号一般分为电压信号;电流信号;电阻信号。 21、在带电设备四周严禁使用皮尺、线尺、金属尺和进行测量工作。 22、带电设备着火时应使用干粉、1211、二氧化碳灭火器,不得使用泡沫灭火器灭火。 23、变电站(所)常用直流电源有蓄电池、硅整流、电容储能。 24、变电站(所)事故照明必须是独立电源,与常用照明回路不能混接。 25、高压断路器或隔离开关的拉合操作术语应是拉开、合上。 26、继电保护装置和自动装置的投解操作术语应是投入、解除。 27、验电装拆接地线的操作术语是装设、拆除。 28、每张操作票只能填写一个操作任务,每操作一项,做一个记号“√”。

工程造价试题(答案)

湖北第二师范学院继续教育学院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

湖南省高一上学期期末考试数学试题(含答案)

湖南师大附中度高一第一学期期末考试 数学 时量:120分钟满分:150分 得分:____________ 第Ⅰ卷(满分100分) 一、选择题:本大题共11小题,每小题5分,共55分,在每小题给出的四个选项中,只有一项是符合题目要求的. 1.已知两点A(a,3),B(1,-2),若直线AB的倾斜角为135°,则a的值为 A.6 B.-6 C.4 D.-4 2.对于给定的直线l和平面a,在平面a内总存在直线m与直线l A.平行B.相交C.垂直D.异面 3.已知直线l1:2x+3my-m+2=0和l2:mx+6y-4=0,若l1∥l2,则l1与l2之间的距离为 A. 5 5 B. 10 5 C. 25 5 D. 210 5 4.已知三棱锥P-ABC的三条侧棱PA、PB、PC两两互相垂直,且PA=2,PB=3,PC=3,则这个三棱锥的外接球的表面积为 A.16πB.32πC.36πD.64π 5.圆C1:x2+y2-4x-6y+12=0与圆C2:x2+y2-8x-6y+16=0的位置关系是 A.内含B.相交C.内切D.外切 6.设α,β是两个不同的平面,m,n是两条不同的直线,则下列命题中正确的是 A.若m∥n,m?β,则n∥βB.若m∥α,α∩β=n,则m∥n C.若m⊥β,α⊥β,则m∥αD.若m⊥α,m⊥β,则α∥β 7.在空间直角坐标系O-xyz中,一个四面体的四个顶点坐标分别为A(0,0,2),B(2,2,0),C(0,2,0),D(2,2,2),画该四面体三视图中的正视图时,以xOz平面为投影面,则四面体ABCD的正视图为 8.若点P(3,1)为圆(x-2)2+y2=16的弦AB的中点,则直线AB的方程为 A.x-3y=0 B.2x-y-5=0 C.x+y-4=0 D.x-2y-1=0 9.已知四棱锥P-ABCD的底面为菱形,∠BAD=60°,侧面PAD为正三角形,且平面PAD⊥平面ABCD,则下列说法中错误的是 A.异面直线PA与BC的夹角为60° B.若M为AD的中点,则AD⊥平面PMB

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

某工程项目发包人与承包人签订了施工合同,工期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万元

金融风险课后习题整理123章

第一章 1.简述金融风险含义的含义、特点和主要类型 金融风险是指金融变量的变动所引起的资产组合未来收益的不确定性。(正收益也有可能是风险、不确定性即是风险、方差度量法度量) 金融风险具有不确定性,客观性,主观性,叠加性和累积性,消极性和积极性并存的特点。 金融风险的类型:按照能否分散,可以分为系统风险和非系统风险。按照会计标准,能分为会计风险和经济风险。按照驱动因素,能分为市场风险、信用分析、操作风险、流动性风险、其他风险(经营、国家、关联风险)等。 2.试对金融风险的诱因和有可能导致的经济结果进行阐释和分析 诱因:未来收益有可能受金融变量变动影响的那部分资产组合的资金头寸称为风险暴露。金融风险来源于风险暴露以及影响资产组合未来收益的金融变量变动的不确定性。(暴露是风险资产的一种状态。风险是可能性)。不确定是金融风险产生的根源(内在和外在即非系统和系统) 可能导致的结果:金融风险利弊共存,不良影响有:(1)可能会给微观经济主体带来直接或潜在的经济损失。(2)影响投资者的预期收益。(3)增大了交易和经营管理成本(4)可能会降低部门生产率和资金利用率。(5)可能会引起一国经济增长、消费水平和投资水平的下降。(6)影响一国的国际收支。(7)可能会造成产业结构部合理,社会生产力水平下降,甚至引起金融市场秩序混乱,对经济产生严重破坏。(8)对宏观经济政策的制定和实施也产生重大影响。(4个微观,4个宏观) 3.辨析金融风险与预期损失、未预期损失、经济资本、监管资本之间的关系 金融风险的经济资本是与金融机构实际承担的风险直接对应、并随着机构实际承担的风险大小而变化的资本,是由金融机构基于追求股东价值最大化的理念对风险、收益、资本综合考虑的基础上所确定的。 金融风险的监管资本是指监管部门针对有可能发生的风险而要求金融机构必须备足的资本。(核心资本和附属资本) 预期损失是实现可以预计的平均损失,一般视为金融机构的业务成本之一,以计提准备

最新高一英语上学期期末测试题(含答案)

11-12学年高一上学期期末考试 英语 本试卷分第Ⅰ卷(选择题) 和第II卷(非选择题) 两部分,共120分。考试时间120分钟。 第I卷(选择题三部分共85分) 第二部分英语知识运用(共两节, 满分35分) 第一节单项填空(共15小题;每小题1分,满分15分) 请认真阅读下面各题,从题中所给的A、B、C、D四个选项中,选出最佳选项,并在答题卡上将该项涂黑。 21. Such ________ medical equipment is in ________ danger of breaking down, if not take n good care of. A. a; the B. a; / C. /; the D. /; / 22. Let’s paint one side of the paper red, and _______ side black. A. the other B. another C. the others D. one another 23. Last week, only two people came to look at the house, _______ wanted to buy it. A. none of them B. both of them C. none of whom D. neither of whom 24. _______ the Internet is of great help, I don’t think it’s a good idea to spend too much time on it. A. If B. Because C. Although D. As 25. The manager of the company told us that very little _______ was made of the waste material in the past. A. cost B. value C. use D. matter 26. If you aren’t interested in the subjects your teachers suggest, you can ______ some of them. A. enjoy B. drop C. leave D. prove 27. His movie won several awards at the film festival, _______ was beyond his wildest dream. A. which B. that C. that D. it 28.—The window is dirty. —I know. It _______ for weeks. A. hasn’t cleaned B. didn’t clean C. wasn’t cleaned D. hasn’t been cleaned 29. You can’t imagine ______ when they received these nice Christmas presents. A. how they were excited B. how excited were they C. how excited they were D. they were how excited 30. The under-water meeting in Maldives has been put off _______ the bad weather. A. in charge of B. in search of C. instead of D. because of 31.—What about going to the cinema this evening? —Oh, I don’t know. I’ve got a bit of a headache. _______, John’s coming to see me, so I ought to stay in. A. However B. In other words C. What’s more D. Though 32.—Cathy, the door bell is ringing! I’m doing the dishes. —Mum, I see who it is. A. would B. will C. am about to D. am going to 33. The hotel wasn’t perfectly good, but I ________ in many worse hotels.

123考试试题

一、单项选择题:(每题1分,共20分) 1、禁止在具有、的场所吸烟、使用明火。(B) A、火灾、易燃 B、火灾、爆炸危险 C、易燃、爆炸危险 D、易燃、人口密集型 2、生产、储存、经营易燃易爆危险品的场所不得与设置在同一一建筑内,并应于其保持安全距离。( C )。 A、人口密集型场所 B、公共聚集场所 C、居住场所 D、劳动密集型场所 3、发展和改革部门应当将建设列入地方固定资产投资规划。(A) A、公共消防实施 B、消防实施 C、个体消防实施 D、单位消防实施 42、我国的“119”消防宣传活动日是( A)。 A.11月9日 B.1月19日 C.9月11日D、10、19 5、用灭火器灭火时,灭火器的喷射口应该对准火焰的(C )。 A、上部 B.中部 C.根部D、下部 6、用灭火器进行灭火的最佳位置是(B ) A.下风位置 B.上风或侧风位置 C.离起火点10米以上的位置D、离起火点5米以上位置 7、单位对职工的消防安全教育培训应当将本单位的火灾危险性、、 消防设施、及灭火器材的操作使用方法、人员疏散逃生知识等作为培训重点。(A)。

A、防火灭火措施 B、防火措施 C、灭火措施 D、疏散逃生 8、发现火灾隐患和消防违法行为可拨打电话,想当地公安消防部门举报。(B)A、95119 B、96119 C、97119 D、98119 9、火灾发生后,公安机关负责火场外围警戒、和通往火场的道路交通秩序。(C)A、进入火场灭火B、进入火场救人 C、维护火场持续 D、都不对 10、公众聚集场所在营业期间的防火巡查应当至少每几小时一次。 ( B )A、一小时一次B、两小时一次 C、三小时一次 D、四小时一次 11、消防控制室应当保持不得少于值班人员24小时不间断值班。 ( B ) A、一位 B、两位 C、三位 D、四位 12、自动消防设施应当有具有相应资质的单位和人员定期进。 ( A )A、维护、检测B、维护、修改 C、测试、保养 D、测试、更改 13、火场救援中下列不正确的是。(C)。

练习题123

练习题一 一、单项选择题: 1.()限制了估价报告书的用途。 A、估价方法 B、估价目的 C、估价原则 D、估价日期 参考答案:B 2.现行的土地权属证书有() A、《国有土地所有证》; B、《国有土地使用证》; C、《集体土地所有证》; D、《集体土地使用证》。 参考答案:BCD 3. 中国房地产估价师学会简称为()。 A、IRCEA B、CAIRE C、CIREA D、CEIRA 参考答案:C 4. 政府举行土地使用权拍卖出让,有意购买者可以委托房地产估价人员为其评估能够承受的最高购买价格,这也是一种( )。A.市场价值评估 B.投资价值评估 C.原始价值评估 D.账面价值评估 参考答案:B 解析:就投资价值与市场价值相对而言,房地产估价所评估的是房地产的市场价值。但作为房地产估价人员,评估投资价值或提供房地产市场分析报告、房地产投资项目可行性研究报告,也是其服务的重要领域。 5. 第一个房地产投资者对房地产都有一个心理价位,投资价值可以看成是这个心理价位,当( )低于其心理价位时,投资者趋向于增加投资;相反,他们将向市场出售过去的房地产。A.市场价格 B.投资价格C.使用价格 D.交换价格 参考答案:A 解析:投资者评估的房地产的投资价值,或者说消费者对房地产的评价,大于或等于该房地产的市场价格,是其投资行为或交易能够实现的基本条件。当投资价值大于市场价格时,说明值得投资购买;反之,说明不值得投资购买。 6. ( )是随着时间的推移而减少的。A.原始价值 B.账面价值C.市场价值 D.投资价值 参考答案:B 解析:原始价值是始终不变的;账面价值是随着时间的推移而减少的;市场价值是随着时间的推移而变化的,有时高,有时低。市场价值很少等于账面价值。 7. ( )是指某种房地产在市场上的一般、平均水平价格,是该类房地产大量成交价格的抽象结果。 A. 原始价格 B.理论价格C.成交价格 D.市场价格 参考答案:D 解析:市场价格是指某种房地产在市场上的一般、平均水平价格,是该类房地产大量成交价格的抽象结果。 8. 楼面地价又称单位建筑面积地价,楼面地价与土地总价的关系为( )。 A.楼面地价;土地总价÷总建筑面积B.楼面地价:土地总价x总建筑面积C.楼面地价:土地总价+总建筑面积D. 楼面地价:总建筑面积÷土地总价 参考答案:A 9. 合法原则要求房地产估价应以( )为前提进行。 A.最高最佳使用原则B.公平原则C.估价对象的合法权益 D. 替代原则 参考答案:C 解析:两宗实物状况相同的房地产,如果权益不同,价值会有所不同。 10. 收益递增递减原理可以帮助我们确定( )。 A.最佳用途和最佳规模 B.最佳约度C.最佳规模和最佳约度 D.最佳用途 参考答案:C 解析:它揭示的是两种投入产出关系:一种是在一种投入量变动而其他投入量固定的情况下的投入产出关系;另一种是在所有的投入量都变动的情况下的投入产出关系。 11. ( )是评估房地产价格的时间界限,例如,政府有关房地产的法律、法规、政策、参考、税收等的发布、变更、实施日期等,均有可能影响估价对象的价格,因此,在估价时是采用发布、变更、实施日期之前的还是之后的,就应根据它不确定。A,估价时点 B.估价目的 C.估价区位 D.估价权益 参考答案:A 解析:估价不是求取估价对象在某一个时间上的价格,这既没有必要也不可能。 二、多项选择题: 1. 房地产之所以有价格,其前提条件是( )。A.房地产的有用性 B.房地产的稀缺性C.房地产的有效供给 D.房地产的有效需求 参考答案:A, B, D 解析:房地产之所以有价格,与其他任何商品为什么有价格一样,需要具备3个条件:①有用性;②稀缺性;③有效需求。 2. 成交价格简称成交价,是交易双方实际达成交易的价格。它是一个已完成的事实这种价格通常随着 ( )的不同而不同。A.交易者的心态 B.交易者的偏好C.交易者对市场了解程度 D.讨价还价能力 参考答案:A, B, C, D 解析:成交价格可能是正常的,也可能是不正常的,所以,可将成交价格区分

2018高一数学上学期期末考试试题及答案

2018第一学期期末考试 高一数学试题 第Ⅰ卷(选择题 共48分) 参考公式: 1.锥体的体积公式1 ,,.3 V Sh S h =其中是锥体的底面积是锥体的高 2.球的表面积公式2 4S R π=,球的体积公式3 43 R V π=,其中R 为球的半径. 一、选择题:本大题共12小题,每小题4分,共48分,在每小题给出的四个选项中,只有一项 是符合题目要求的. 1.已知全集{0,1,2,3},{1,3}U A ==,则集合U C A = ( ) A .{}0 B .{}1,2 C .{}0,2 D .{}0,1,2 2.空间中,垂直于同一直线的两条直线 ( ) A .平行 B .相交 C .异面 D .以上均有可能 3.已知幂函数()α x x f =的图象经过点? ?? ?? 2, 22,则()4f 的值等于 ( ) A .16 B.116 C .2 D.1 2 4. 函数()lg(2)f x x =+的定义域为 ( ) A.(-2,1) B.[-2,1] C.()+∞-,2 D. (]1,2- 5.动点P 在直线x+y-4=0上,O 为原点,则|OP|的最小值为 ( ) A B .C D .2 6.设m 、n 是两条不同的直线,α、β是两个不同的平面,则下列命题中正确的是 ( ) A .若m ∥n ,m ∥α,则n ∥α B .若α⊥β,m ∥α,则m ⊥β C .若α⊥β,m ⊥β,则m ∥α D .若m ⊥n ,m ⊥α, n ⊥β,则α⊥β 7.设()x f 是定义在R 上的奇函数,当0≤x 时,()x x x f -=2 2,则()1f 等于 ( ) A .-3 B .-1 C .1 D .3

管理试题123

管理试题123 《管理学》模拟试题(一) 一、单项选择题 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.被管理者有较

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. 根据《合同法》,当事人既约定违约金,又约定定金的,一方违约时,对方的正确处理方式

课外练习题答案

(1)6月8日,存入现金16000元。 借:库存现金16 000 贷:吸收存款——活期存款——吉达商贸有限公司户16 000 (3)6月15日,开具现金支票支取现金8000元。 借:吸收存款——活期存款——吉达商贸有限公司户8 000贷:库存现金8 000 分户账 户名:吉达商贸有限公司账号:利率:% 单位:元 利息=3 937 000×%÷360=(元) 借:应付利息——活期存款利息户 贷:吸收存款—活期存款——吉达商贸有限公司户

(1) 借:吸收存款——活期存款——天龙集团户200 000贷:吸收存款——定期存款——天龙集团户200 000 (2) 到期利息=50 000×1×%=1 260(元) 借:吸收存款——定期存款——丽江宾馆户50 000应付利息——定期存款利息户 1 260 贷: 吸收存款——活期存款——丽江宾馆户51 260 (3) 利息=80 000×83×%÷360=(元) 借: 吸收存款——定期存款——友谊商场户200 000 应付利息——定期存款利息户 贷: 吸收存款——活期存款——友谊商场户200 借:吸收存款——活期存款——友谊商场户120 000贷:吸收存款——定期存款——友谊商场户120 000 (4) 到期利息=100 000×%×1=2 250(元) 过期利息=100 000×65×%÷360=130(元)

借:吸收存款——定期存款——恒信有限责任公司户100 000应付利息——定期存款利息户 2 380贷:吸收存款—活期存款—恒信有限责任公司户102 380 3. (1)12月3日 借:库存现金 1 500贷:吸收存款——活期储蓄存款——陈浩户 1 500(2)12月15日: 借:吸收存款——活期储蓄存款——陈浩户 3 000贷:库存现金 3 000 (3)12月19日 借:吸收存款——活期储蓄存款——陈浩户 1 000贷:库存现金 1 000 (4) ①12月20日结计陈浩存款账户的利息 利息=(326 000+5 ×2+7 ×12+4 ×4+3 ×2)×%÷360 =(326 000+11 +88 +17 +6 ×%÷360 =450 ×%÷360=9(元) ②12月21日办理利息转账:

高一英语上学期期末测试题(含答案)

英语试题 第Ⅰ卷(总分115分) 第一部分:听力测试(共两节,满分30分) 第一节:(共5小题;每题分,满分分) 听下面5段对话。每段对话后有一个小题,从题中所给的A,B,C三个选项中选出最佳选项,并标在试卷的相应位置。听完每段对话后,你都有10秒钟的时间来回答有关小题和阅读下一小题。每段对话仅读一遍。 1. Why is the man happy A. He’s got a good job. B. He’s got a letter from his father. C. His sister’s got a good job in America. 2. Where will the woman most probably spend the weekend A. At home. B. At a cinema. C. At a restaurant. 3. What does the man suggest the woman do A. Take less exercise. B. Take a new medicine. C. Take less medicine every day. 4. How did the woman go to work before A. By subway. B. By bike. C. By bus. 5. Who has come to the city for a visit A. The man’s parents. B. The woman’s parents. C. The man’s grandchildren. 第二节(共15小题;每题分,满分分) 听下面5段对话或独白,每段对话或独白后有几个小题,从题中所给的A,B,C三个选项中选出最佳选项,并标在试卷的相应位置。听每段对话或独白前,你将有时间阅读各小题,每小题5秒钟;听完后各小题将给出5秒钟的作答时间。每段对话或独白读两遍。 听第6段材料,回答第6至7题。 6. Where are the two speakers A. In a teacher’s office. B. In a book shop. C. In a library. 7. How many books will the man probably take away A. One. B. Three. C. Four. 听第7段材料,回答第8至10题。 8. What does the man think of the car at first A. It’s too old. B. It’s too small. C. It’s too expensive. 9. What does the man have to do before he has the car A. Sign a paper. B. Examine the car again. C. Examine his check again. 10. What can we learn from the conversation A. The car was sold at $ 3,500. B. The man is satisfied with the car. C. The woman took $ 200 off the asking price. 听第8段材料,回答第11至13题。 11. What are the man and the woman mainly talking about

考试题123

模具制造技术复习题(2011-5-30) 1.模具制造的特点及基本工艺路线是什么? 特点:①模具材料硬度较高②模具加工质量要求高③形状结构复杂④单件生产 基本工艺路线:分析估算→模具设计→模具制图→零件加工→装配调整→试模→成品2.什么是特种加工?特种加工相对传统机械加工的特点是什么? 特种加工:①是指切削加工以为的一些新的加工方法,也称非传统加工方法;②它不需要用比工件更硬的工具;③也不需要在加工过程中施加明显的机械力;④而是利用其他能量为主来除去工件上的多余部分,已达到一定形状、尺寸和表面粗糙度的要求。 特点:①以柔克刚②便于加工复杂型面③不受材料硬度的限制④可以获得良好表面质量(在特种加工过程中,工件表面不像切削加工那样产生强烈的弹、塑性变形,因此有些特种加工方法可以获得较小的表面粗糙度,其残余应力、冷作硬化热应力、热影响区及毛刺等表面缺陷都比切削表面小) 3.什么是模具加工工艺规程?在生产中起何作用? 工艺规程:是规定模具零件制造工艺过程和方法的工艺文件 作用:①它是指导生产的技术文件②是生产组织和管理的依据③是加工检验的依据4. 铣床有哪些附件?各有何作用?在立铣床上加工斜面有哪几种方法? 加工斜面方法:①加斜垫铁②采用万能分度头③调整立铣头 5. 在平面磨床上如何保证模板六个面的位置精度?(平行度和垂直度) (1)平行平面的磨削:应在平面磨床上反复交替磨削两平面,逐次提高平行度和表面粗糙度。 (2)①用精密平口钳装夹工件,磨削完一个平面后,将精密平口钳翻转90°磨削另一个 平面,通过精密平口钳自身的精度保证两个平面的垂直度要求。②用精密角铁和平行夹头装夹工件,用百分表找正后磨削出该垂直面,保证模板侧面和上下平面的垂直度。③用导磁角铁和平行垫铁装夹工件,以工件上面积较大的平面为基准面,并使其紧贴导磁角铁面,磨出垂直面。④用精密V形铁和卡爪装夹工件,适用于圆形工件的端面磨削。 6. 常用仿形加工有哪三种方式?怎么选仿形铣刀具? 方式:一向仿形;二向仿形;三向仿形 刀具:①圆柱立铣刀与圆柱形触头配用;适用于型腔粗加工和要求型腔底部为清角的仿形加工,是仿形铣削中最常用的铣刀。②圆柱球头铣刀与球头形触头配用;适 用于型腔半精加工和精加工及加工底面与侧壁间有圆弧过渡的型腔。③锥形球头 铣刀与球头形触头配用;适用于型腔侧面有斜度,底部有过渡圆角的结构同时进 行精加工,或对具有一定深度和较小的凹圆弧进行加工。 7.试述坐标镗床加工精度高的原因?精密镗床有哪些定位附件?各适用于何场合? 原因:①主轴孔的精度高②机床本体滑块部分的精度高,保证位置精度高③机床刚度大,保证形状精度④采用了精密读数装置,保证了尺寸精度 定位附件:(1)光学中心测定器光源的光线通过物镜照明工件的定位部分,使用时,只要将测定器对准工件的基准边或基准线,使它们的影像与两条十字线重合, 或处于互相垂直的双刻线的中间,此时,机床主轴已经对准两基准边或基准 线的交点。(2)万能转台①夹紧工件。②加工在圆周上分布的孔。③加工 与工件轴线成一定角度的斜孔。(3)弹簧中心冲用于划线和打中心眼。(4)

工程造价基础知识练习题及答案

基础知识辅导1 1.企业在竞争中处于强势地位,具有高收益与成长,应选择()投资战略类型。 A.积极投资B.根据需要增加投资C.有选择的投资D.为维持增长率投资 答案: A 2.勘察设计费属于建设项目中的()。 A.预备费B.建安工程费D.工程建设其他费用 答案: D 3.某项目中建筑安装工程费用为560万元,设备工器具购置费工为330万元,工程建设其他费用为133万元,基本预备费为102万元,涨价预备费55万元,建设期贷款利息为59万元(没有固定资产投资方向调节税),则静态投资为()万元。 A.1023 B.1125 C.1180 D.1239 答案: B 【参考解析】:建设项目静态投资包括建筑工程安装费用,设备和工、器具购置费,工程建设其他费用,基本预备费。故只能选B. 4.某工程网络计划有三条独立的路线A-D.B-E.C-F,其中B-E为关键线路, TFA=TFD-2d,TFc=TFF=4d,承发包双方已签订施工合同,合同履行过程中,因业主原因使B工作延误4d,因施工方案原因使D工作延误8d,因不可抗力使D.E.F工作延误10d,则承包人就上述事件可向业主提出的工期索赔的总天数为()。 A.42 B.24 C.14 D.4 答案: C 【参考解析】:此题为2004年度全国造价工程师执业资格考试试题。首先应做出判断:只有业主原因和不可抗力引起的延误才可以提出工期索赔。经过各个工序的延误可以发现,关键路线依然是B-E.一共延误了14d,所以工期索赔总天数为14D.5.某装修公司采购一批花岗石,运至施工现场,已知该花岗石出厂价为1000元/㎡由花岗石生产厂家业务员在施工现场推销并签订合同,包装费4元/㎡,运杂费30/㎡,当地供销部门手续费率为1%,当地造价管理部门规定材料采购及保管的费率为1%,该花岗石的预算价格为()元/㎡. A.1054.44 B.1034 C.1054.68 D.1044.34 答案: A 【参考解析】:该题为2004年考题,虽然在206号文件中对材料费的构成有新的规定,但由于教材没有变动,所以在考试当中除第一章第三节按照206号文件考核之外,其余章节的内容均按照教材中的要求考核。此题依然适用教材中的公式2.5.1~2.5.10.材料原价=材料出厂价=1000元供销部门手续费=材料原价×1%=10(元)材料预算价格=(材料原价+供销部门手续费+包装费+运杂费)× (1+采购及保管费率)=(1000+10+ 4+30)× (1+1%)=1054.44(元/平方米) 6.某建设项目投产后的年销售收入为1.2亿元,与其同类的企业百元销售收入流动资金占用额为18.60元,则该项目的流动资金估算额为()万元。 A.3600 B.2660 C.1860 D.2232 答案: D 7.采用工程竣工调价系数时,在()基础上调整价差。 A.定额价格B.估算价格C.结算价格D.实际价格 答案: A 8.工人在夜间施工导致的施工降效费用应属于()。

相关文档
最新文档