搜档网
当前位置:搜档网 › SAS base的123题和50题 1

SAS base的123题和50题 1

SAS base的123题和50题 1
SAS base的123题和50题 1

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

1.A raw data file is listed below.

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

son Frank 01/31/89

daughter June 12-25-87

brother Samuel 01/17/51

The following program is submitted using this file as input:

data work.family;

infile 'file-specification';

run;

Which INPUT statement correctly reads the values for the variable Birthdate as SAS date values?

a. i nput relation $ first_name $ birthdate date9.;

b. i nput relation $ first_name $ birthdate mmddyy8.;

c.

i nput relation $ first_name $ birthdate : date9.; d. i nput relation $ first_name $ birthdate : mmddyy8.;

Correct answer:

An informat is used to translate the calendar date to a SAS date value. The date values are in the form of two-digit values for month-day-year, so the MMDDYY8. informat must be used. When using an informat with list input, the colon-format modifier is required to correctly associate the informat with the variable name.

You can learn about

?

informats in Reading Date and Time Values ? the colon-format modifier in Reading Free-Format Data .

2.A raw data file is listed below.

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

Jose,47,210

Sue,,108

The following SAS program is submitted using the raw data file above 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;

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

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

d. infile 'file-specification ' missover;

Correct answer:

The PAD option specifies that SAS pad variable length records with blanks. The

MISSOVER option prevents SAS from reading past the end of the line when reading free formatted data. The DLM= option specifies the comma as the delimiter; however,

consecutive delimiters are treated as one by default. The DSD option correctly reads the data with commas as delimiters and two consecutive commas indicating a missing value like those in this raw data file.

You can learn about

? the PAD option in Reading Raw Data in Fixed Fields

?

the MISSOVER option in Creating Multiple Observations from a Single

Record

? the DLM= option and the DSD option in Reading Free-Format Data . 3.The following program is submitted:

data numrecords;

infile cards dlm=',';

input agent1 $ agent2 $ agent3 $;

cards;

jones,,brownjones,spencer,brown

;

run;

What is the value for the variable named Agent2 in the second observation?

a.

brown b.

spencer c.

' ' (missing character value) d. There is no value because only one observation is created.

Correct answer:

The CARDS statement enables you to read instream data. Any number of consecutive commas are considered to be a single delimiter as a result of the DLM= option, and the length of each variable defaults to 8 bytes. Therefore, the values jones , brownjon , and spencer are assigned to Agent1, Agent2, and Agent3, respectively, for the first

observation. The rest of the data on the record is not read by the INPUT statement and is not output to the data set.

You can learn about

?

the CARDS statement in Creating SAS Data Sets from Raw Data ? the default length of variables in Reading Free-Format Data .

4.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.;

Correct answer:

Formatted input requires periods as part of the informat name. The period is missing from the variables Style and Street in Answer b, the variable Baths in Answer d, and the variable Price in Answer a (which is also missing a dollar sign to read the variable Street as a character value).

You can learn about formatted input and informats in Reading Raw Data in Fixed Fields.

5. 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;

SAS中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

proc print data=sales;

run;

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

a. The DATA step fails execution.

b. The SAS data set Sales does not exist.

c. The SAS data set Sales has no observations.

d. The PRINT procedure contains a syntax error.

Correct answer:

The DATA step creates a permanent SAS data set, Sasdata.Salesdata . The PRINT

procedure is printing a temporary SAS data set, Sales , that is stored in the Work library. At the beginning of the SAS session, Work.Sales does not exist.

You can learn about

?

creating permanent data sets with the DATA step in Creating SAS Data Sets

from Raw Data

? temporary data sets in Basic Concepts . 6. Which action assigns a reference named SALES to a permanent SAS data library? a. Issuing the command:

libref SALES 'SAS-data-library'

b. Issuing the command:

libname SALES 'SAS-data-library'

c.

Submitting the statement: libref SALES 'SAS-data-library'; d. Submitting the statement:

libname SALES 'SAS-data-library'; Correct answer:

The LIBNAME statement assigns a reference known as a libref to a permanent SAS data library. The LIBNAME command opens the LIBNAME window.

You can learn about the LIBNAME statement in Referencing Files and Setting Options .

7. The following SAS program is submitted:

data newstaff;

set staff;

run;

Which one of the following WHERE statements completes the program and selects only observations with a Hire_date of February 23, 2000?

a. where hire_date='23feb2000'd;

b. where hire_date='23feb2000';

c. where hire_date='02/23/2000'd;

d.where hire_date='02/23/2000';

Correct answer:

A SAS date constant must take the form of one- or two-digit day, three-digit month, and two- or four-digit year, enclosed in quotation marks and followed by a d

('ddmmmyy'd).

You can learn about SAS date constants in Creating SAS Data Sets from Raw Data. 8. Which one of the following SAS date formats displays the SAS date value for January 16, 2002 in the form of 16/01/2002?

a. DATE10.

b. DDMMYY10.

c. WEEKDATE10.

d. DDMMYYYY10.

Correct answer:

The requested output is in day-month-year order and is 10 bytes long, so DDMMYY10. is the correct format. Although WEEKDATE10. is a valid SAS format, it does not display the SAS date value as shown in the question above. DDMMYYYY10. is not a valid SAS date format, and the DATE w. format cannot accept a length of 10.

You can learn about

?the DDMMYY10. format in Creating List Reports

?the WEEKDATE10. format in Reading Date and Time Values.

9. Which one of the following displays the contents of an external file from within a SAS session?

a. the LIST procedure

b.the PRINT procedure

c.the FSLIST procedure

d.the VIEWTABLE window

Correct answer:

The PRINT procedure and VIEWTABLE window display the values in SAS data sets. The FSLIST procedure displays the values in external files. There is no LIST procedure in SAS.

You can learn about

?the PRINT procedure in Creating List Reports

SAS中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

? the VIEWTABLE window in Referencing Files and Setting Options .

10. The SAS data set Sashelp.Prdsale contains the variables Region and Salary with 4 observations per Region . Sashelp.Prdsale is sorted primarily by Region and within Region by Salary in descending order.

The following program is submitted:

data one;

set sashelp.prdsale;

retain temp;

by region descending salary;

if first.region then

do;

temp=salary;

output;

end;

if last.region then

do;

range=salary-temp;

output;

end;

run;

For each region, what is the number of observation(s) written to the output data set? a. 0

b. 1

c. 2

d. 4

Correct answer:

The expression first.region is true once for each region group. The expression last.region is true once for each region group. Therefore, each OUTPUT statement executes once for a total of 2 observations in the output data set.

You can learn about the FIRST.variable expression and the OUTPUT statement in Reading SAS Data Sets .

11. The following SAS program is submitted:

proc contents data=sasuser.houses;

run;

The exhibit below contains partial output produced by the CONTENTS procedure. Data Set Name

SASUSER.HOUSES Observations 15 Member Type

DATA Variables 6 Engine

V9 Indexes 0 Created

Tuesday, April 22, 2003 03:09:25 PM

Observation Length 56 Last Modified

Tuesday, April 22, 2003 03:09:25 PM

Deleted Observations

0 Protection Compressed

NO

Data Set Type Sorted NO

Label Residential housing

for sale

Data Representation WINDOWS_32

Encoding wlatin1 Western

(Windows)

Which of the following describes the Sasuser.Houses data set?

a.The data set is sorted but not indexed.

b.The data set is both sorted and indexed.

c.The data set is not sorted but is indexe

d.

d.The data set is neither sorted nor indexed.

Correct answer:

The exhibit above shows partial output from the CONTENTS procedure, In the top right-hand column of the output, you see that Indexes has a value of 0, which indicates that no indexes exist for this data set. Also, Sorted has a value of NO, which indicates that the data is not sorted.

You can learn about the CONTENTS procedure in Referencing Files and Setting Options.

12.The following SAS program is submitted:

proc sort data=work.test;

by fname descending salary;

run;

Which one of the following represents how the observations are sorted?

a. The data set Work.Test is stored in ascending order by both Fname and Salary values.

b. The data set Work.Test is stored in descending order by both Fname and Salary values.

c. The data set Work.Test is stored in descending order by Fname and ascending order by Salary values.

d. The data set Work.Test is stored in ascending order by Fname and in descending order by Salary values.

Correct answer:

The DESCENDING keyword is placed before the variable name it modifies in the BY statement, so the correct description is in descending order by Salary value within ascending Fname values.

You can learn about the SORT procedure and the DESCENDING keyword in Creating List Reports.

13.The following SAS program is submitted:

data names;

SAS中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

title='EDU';

if title='EDU' then

Division='Education';

else if title='HR' then

Division='Human Resources';

else Division='Unknown';

run;

Which one of the following represents the value of the variable Division in the output data set?

https://www.sodocs.net/doc/1f5838054.html,catio

https://www.sodocs.net/doc/1f5838054.html,cation

c.Human Re

d.Human Resources

Correct answer:

The length of the variable Division is set to 9 when the DATA step compiles. Since the value of the variable Title is EDU, the first IF condition is true; therefore, the value of the variable Division is Education.

You can learn about

?the length of a variable in Understanding DATA Step Processing

?IF-THEN statements in Creating and Managing Variables.

14.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;

Correct answer:

The correct syntax for an IF-THEN statement is: IF expression THEN statement;

In this example, the variable City is assigned a value of Chicago only if the expression AirportCode='ORD' is true.

SAS中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

You can learn about IF-THEN statements in Creating and Managing Variables .

15.The following SAS program is submitted:

data work.building;

code='DAL523';

code='SANFRAN604';

code='HOUS731';

length code $ 20;

run;

Which one of the following is the length of the code variable?

a. 6

b. 7

c. 10

d. 20

Correct answer:

The DATA step first goes through a compilation phase, then an execution phase. The length of a variable is set during the compilation phase and is based on the first time the variable is encountered. In this case, the variable code is set to the length of the text string DAL523 which is 6 characters long. The next assignment statements are ignored during compilation. The LENGTH statement is also ignored since the length has already been established, but a note will be written to the log.

You can learn about

?

the compilation phase of the DATA step in Understanding DATA Step

Processing

? the LENGTH statement in Creating and Managing Variables .

16. Which of the following statements creates a numeric variable named IDnumber with a value of 4198?

a. IDnumber=4198;

b. IDnumber='4198';

c. length IDnumber=8;

d. length IDnumber $ 8;

Correct answer:

The first reference to the SAS variable in the DATA step sets the name, type, and length of the variable in the program data vector (PDV) and in the output SAS data set. The assignment statement IDnumber=4198; is the first reference and creates a numeric variable named IDnumber with a default storage length of 8 bytes.

You can learn about

? creating variables in the DATA step in Understanding DATA Step Processing

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

? numeric variables in Basic Concepts .

17. The following program is submitted:

data fltaten;

input jobcode $ salary name $;

cards;

FLAT1 70000 Bob

FLAT2 60000 Joe

FLAT3 30000 Ann

;

run;

data desc;

set fltaten;

if salary>60000 then description='Over 60';

else description='Under 60';

run;

What is value of the variable named description when the value for salary is 30000? a.

Under 6 b.

Under 60 c.

Over 60 d. ' ' (missing character value)

Correct answer:

The variable description is being created by the IF-THEN/ELSE statement during compilation. The first occurrence of the variable description is on the IF statement, and since it is assigned the value Over 60, the length of the variable is 7. Therefore, for the salary value of 30000, description has the value of Under 6 (the 0 is truncated.) You can learn about

?

the compilation phase of the DATA step in Understanding DATA Step

Processing

? IF-THEN/ELSE statements in Creating and Managing Variables .

18. A raw data file is listed below.

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

10

23

20

15

The following program is submitted:

data all_sales;

infile 'file-specification';

input receipts;

run;

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

Which statement(s) complete(s) the program and produce(s) a running total of the Receipts variable?

a. total+receipts;

b. total 0;

sum total;

c. total=total+receipts;

d. total=sum(total,receipts);

Correct answer:

The SUM function and the assignment statement do not retain values across iterations of the DATA step. The sum statement total+receipts; initializes total to 0, ignores missing values of receipt , retains the value of total from one iteration to the next, and adds the value of receipts to total .

You can learn about the sum statement in Creating and Managing Variables .

19.A raw data file is listed below.

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

1901 2

1905 1

1910 6

1925 1

1941 1

The following SAS program is submitted and references the raw data file above: data money;

infile 'file-specification';

input year quantity;

total=total+quantity;

run;

What is the value of total when the data step finishes executing?

a.

0 b.

1 c.

11 d. . (missing numeric value)

Correct answer:

The variable Total is assigned a missing value during the compilation phase of the DATA step. When the first record is read in, SAS processes: total=.+2; which results in a missing value. Therefore the variable Total remains missing for all observations. You can learn about

? the compilation phase of the DATA step in Understanding DATA Step

Processing

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

? using missing values with arithmetic operators in Creating SAS Data Sets from

Raw Data .

20.The following program is submitted:

data test;

average=mean(6,4,.,2);

run;

What is the value of average ?

a.

0 b.

3 c.

4 d. . (missing numeric value)

Correct answer:

The MEAN function adds all of the non-missing values and divides by the number of non-missing values. In this case, 6 + 4 + 2 divided by 3 is 4.

You can learn about the MEAN function in Transforming Data with SAS Functions .

21.The following SAS program is submitted:

data work.AreaCodes;

Phonenumber=3125551212;

Code='('!!substr(Phonenumber,1,3)!!')';

run;

Which one of the following is the value of the variable Code in the output data set? a. ( 3)

b. (312)

c. 3

d. 312

Correct answer:

An automatic data conversion is performed whenever a numeric variable is used where SAS expects a character value. The numeric variable is written with the BEST12. format and the resulting character value is right-aligned when the conversion occurs. In this example, the value of Phonenumber is converted to character and right-aligned before the SUBSTR function is performed. Since there are only 10 digits in the value of

Phonenumber , the right-aligned value begins with two blanks. Therefore the SUBSTR function picks up two blanks and a 3, and uses the BEST12. format to assign that value to Code . Then, the parentheses are concatenated before and after the two blanks and a 3. You can learn about automatic data conversion and the SUBSTR function in

Transforming Data with SAS Functions .

22.The following SAS program is submitted:

data work.inventory;

products=7;

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

do until (products gt 6);

products+1;

end;

run;

Which one of the following is the value of the variable products in the output data set? a. 5

b. 6

c. 7

d. 8

Correct answer:

A DO UNTIL loop always executes at least once because the condition is not evaluated until the bottom of the loop. In the SAS program above, the value of Products is

incremented from 7 to 8 on the first iteration of the DO UNTIL loop, before the condition is checked. Therefore the value of Products is 8.

You can learn about DO UNTIL loops in Generating Data with DO Loops .

23.The following program is submitted:

data work.test;

set work.staff (keep=salary1 salary2 salary3);

run;

Which ARRAY statement completes the program and creates new variables?

a. array salary{3};

b. array new_salary{3};

c. array salary{3} salary1-salary3;

d. array new_salary{3} salary1-salary3;

Correct answer:

Although each of the ARRAY statements listed above is a valid statement, only Answer

B creates new variables named new_salary1, new_salary2 and new_salary3. Answer

C and Answer

D both create an array that groups the existing data set variables salary1, salary2, and salary3. Since the array in Answer A is named salary , it also uses the existing data set variables.

You can learn about creating new variables in an ARRAY statement in Processing Variables with Arrays .

24.Which of the following permanently associates a format with a variable?

a. the FORMAT procedure

b. a FORMAT statement in a DATA step

c. an INPUT function with format modifiers

d. an INPUT statement with formatted style input

Correct answer:

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

To permanently associate a format with a variable, you use the FORMAT statement in a DATA step. You can use the FORMAT procedure to create a user-defined format. You use the INPUT function to convert character data values to numeric values with an informat. You use the INPUT statement to read data into a data set with an informat. You can learn about

?

permanently assigning a format to a variable in Creating and Managing Variables ?

the FORMAT statement in Creating List Reports ?

the FORMAT procedure in Creating and Applying User-Defined Formats ?

the INPUT function in Transforming Data with SAS Functions ? the INPUT statement in Reading Raw Data in Fixed Fields .

25.The following report is generated:

Style

of homes

n A sking

Price

CONDO 4 $99,313

RANCH 4 $68,575 SPLIT 3 $77,983 TWOSTORY 4 $83,825

Which of the following steps created the report?

a. proc freq data=sasuser.houses;

tables style price /nocum;

format price dollar10.;

label style="Style of homes"

price="Asking price";

run;

b.

proc print data=sasuser.houses; class style;

var price;

table style,n price*mean*f=dollar10.;

label style="Style of homes"

price="Asking price";

run;

c.

proc means data=sasuser.houses n mean; class style;

var price;

format price dollar10.;

label style="Style of homes"

price="Asking price";

run;

d.

proc report data=sasuser.houses nowd headline; column style n price;

define style / group "Style of homes";

define price / mean format=dollar8.

"Asking price";

run;

Correct answer:

The FREQ procedure cannot create the average asking price. The CLASS statement and the VAR statement are not valid for use with the PRINT procedure. The MEANS procedure output would have both the N statistic and the N Obs statistic since a CLASS statement is used. The REPORT procedure produced the report.

You can learn about

?the FREQ procedure in Producing Descriptive Statistics

?the PRINT procedure in Creating List Reports

?the MEANS procedure in Producing Descriptive Statistics

?the REPORT procedure in Creating Enhanced List and Summary Reports. 26.A SAS report currently flows over two pages because it is too long to fit within the specified display dimension. Which one of the following actions would change the display dimension so that the report fits on one page?

a.Increase the value of the LINENO option.

b.Decrease the value of the PAGENO option.

c.Decrease the value of the LINESIZE option.

d.Increase the value of the PAGESIZE option.

Correct answer:

The PAGESIZE= SAS system option controls the number of lines that compose a page of SAS procedure output. By increasing the number of lines available per page, the report might fit on one page.

You can learn about the PAGESIZE= option in Referencing Files and Setting Options.

27.Which one of the following SAS REPORT procedure options controls how column headings are displayed over multiple lines?

a. SPACE=

b. SPLIT=

c. LABEL=

d. BREAK=

Correct answer:

The SPLIT= option specifies how to split column headings. The SPACE=, LABEL= and BREAK= options are not valid options in PROC REPORT.

You can learn about the SPLIT= option for the REPORT procedure in Creating Enhanced List and Summary Reports.

SAS中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

28.The following SAS program is submitted:

ods html file='newfile.html';

proc print data=sasuser.houses;

run;

proc means data=sasuser.houses;

run;

proc freq data=sasuser.shoes;

run;

ods html close;

proc print data=sasuser.shoes;

run;

How many HTML files are created?

a. 1

b. 2

c. 3

d. 4

Correct answer:

By default, one HTML file is created for each FILE= option or BODY= option in the ODS HTML statement. The ODS HTML CLOSE statement closes the open HTML file and ends the output capture. The Newfile.html file contains the output from the PRINT, MEANS, and FREQ procedures.

You can learn about the ODS HTML statement in Producing HTML Output.

29.A frequency report of the variable Jobcode in the Work.Actors data set is listed below.

Jobcode Frequency Percent Cumulative

Frequency Cumulative

Percent

Actor I233.33233.33

Actor II233.33466.67

Actor III233.336100.00

Frequency Missing = 1

The following SAS program is submitted:

data work.joblevels;

set work.actors;

if jobcode in ('Actor I', 'Actor II') then

joblevel='Beginner';

if jobcode='Actor III' then

joblevel='Advanced';

else joblevel='Unknown';

run;

Which of the following represents the possible values for the variable joblevel in the Work.Joblevels data set?

a.Advanced and Unknown only

SAS中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

b. Beginner and Advanced only

c. Beginner , Advanced , and Unknown

d. ' ' (missing character value)

Correct answer:

The DATA step will continue to process those observations that satisfy the condition in the first IF statement Although Joblevel might be set to Beginner for one or more observations, the condition on the second IF statement will evaluate as false, and the ELSE statement will execute and overwrite the value of Joblevel as Unknown . You can learn about

?

the IF statement in Creating SAS Data Sets from Raw Data ? the ELSE statement in Creating and Managing Variables .

30.The descriptor and data portions of the Work.Salaries data set are shown below. Variable Type Len Pos

name Char 8 0

salary Char 8 16

status Char 8 8

name status salary Liz S 15,600 Herman S 26,700 Marty S 35,000

The following SAS program is submitted:

proc print data=work.salaries;

where salary<20000;

run;

What is displayed in the SAS log after the program is executed?

a. A NOTE indicating that 1 observation is read.

b. A NOTE indicating that 0 observations were read.

c. A WARNING indicating that character values have been converted to numeric values.

d. An ERROR indicating that the WHERE clause operator requires compatible variables. Correct answer:

Salary is defined as a character variable. Therefore, the value in the WHERE statement must be the character value 20,000 enclosed in quotation marks.

You can learn about the WHERE statement in Creating List Reports .

31.Which of the following statements is true when SAS encounters a syntax error in a DATA step?

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

a. The SAS log contains an explanation of the error.

b. The DATA step continues to execute and the resulting data set is complete.

c. The DATA step stops executing at the point of the error and the resulting data set contains observations up to that point.

d. A note appears in the SAS log indicating that the incorrect statement was saved to a SAS data set for further examination.

Correct answer:

SAS scans the DATA step for syntax errors during the compilation phase. If there are syntax errors, those errors get written to the log. Most syntax errors prevent further processing of the DATA step.

You can learn about how SAS handles syntax errors in the DATA step in Understanding DATA Step Processing .

32.Which TITLE statement would display JANE'S DOG as the text of the title?

a. title "JANE"S DOG";

b. title 'JANE"S DOG';

c. title "JANE'S DOG";

d. title 'JANE' ' 'S DOG';

Correct answer:

The title in a TITLE statement must be enclosed in a pair of matched quotation marks. Unbalanced quotation marks can cause problems for SAS. To hide an unmatched single quotation mark, surround the title text with matched double quotation marks.

You can learn about

?

the TITLE statement in Creating List Reports ? unbalanced quotation marks in Editing and Debugging SAS Programs .

33.The following SAS program is submitted:

data test;

input animal1 $ animal2 $

mlgrams1 mlgrams2;

cards;

hummingbird ostrich 54000.39 90800000.87

;

run;

Which one of the following represents the values of each variable in the output data set?

a. animal1 animal2 mlgrams1 mlgrams2 hummingb ostrich 54000.39 90800000

b. animal1 animal2 mlgrams1 mlgrams2 hummingb ostrich 54000.39 90800000.87

c. animal1 animal2 mlgrams1 mlgrams2 hummingbird ostrich 54000.39 90800000

d. animal1 animal2 mlgrams1 mlgrams2

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

hummingbird ostrich 54000.39 90800000.87

Correct answer:

The CARDS statement is an alias for the DATALINES statement. In the INPUT statement, you must specify a dollar sign ($) after the variable name in order to define a character variable. If you do not specify otherwise, the default storage length for a variable is 8. In the example above, the character value hummingbird is truncated to hummingb .

You can learn about

?

the DATALINES statement in Creating SAS Data Sets from Raw Data ?

the INPUT statement in Reading Free-Format Data ? the default storage length for variables in Basic Concepts .

34.The SAS data sets Work.Employee and Work.Salary are shown below.

Work.Employee fname age Bruce 30 Dan 40

Work.Salary

fname salary Bruce 25000 Bruce 35000 Dan 25000

The following merged SAS data set is generated:

Work.Empdata fname age totsal Bruce 30 60000 Dan 40 25000

Which one of the following SAS programs created the merged data set?

a. data work.empdata;

merge work.employee

work.salary;

by fname;

if first.fname then totsal=0;

totsal+salary;

if last.fname then output;

run;

b.

data work.empdata(drop=salary); merge work.employee

work.salary;

by fname;

SAS 中文论坛网站https://www.sodocs.net/doc/1f5838054.html,

if first.fname then totsal=0;

totsal+salary;

if last.fname then output;

run;

c. data work.empdata;

merge work.employee

work.salary(drop=salary);

by fname;

if first.fname then total=0;

totsal+salary;

if last.fname then output;

run;

d.

data work.empdata; merge work.employee

work.salary;

by fname;

if first.fname then total+salary;

run;

Correct answer:

The MERGE and BY statements allow you to match-merge two or more SAS data sets. The BY statement creates two temporary variables, First.Fname and Last.Fname for BY group processing. The SUM statement is used to add salary for each BY group. The variable on the left side of the plus sign is the variable that is retained and has an initial value of 0. The expression on the right side of the plus sign is added to the variable on the left side of the plus sign to create a grand total. The accumulating variable, totsal , is reset back to 0 when you encounter a new BY group value (First.Fname is true). To output just the totals for each BY group, use the explicit OUTPUT statement when you reach the last occurrence of each Fname value.

You can learn about the MERGE statement, the BY statement and match-merging in Combining SAS Data Sets .

35.The contents of the SAS data set Sasdata.Group are listed below.

name age Janice 10 Henri 11 Michele 11 Susan 12

The following SAS program is submitted using the Sasdata.Group data set as input: libname sasdata 'SAS-data-library ';

data group;

set sasdata.group;

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

工程造价管理试题及答案

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

教师资格证考试:2018下初中政治真题

2018年下半年中小学教师资格考试真题试卷(精编) 《思想品德学科知识与教学能力》(初级中学) 一、单项选择题(本大题共23小题,每小题2分,共46分) 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.W购买Y房屋,双方约定,若Y到当年12月底拿到新房,就将旧房卖给W。合同中的这一条约定在民事法律行为理论上称为() A.附肯定的解除条件 B.附肯定的生效条件 C.附否定的解除条件 D.附否定的生效条件 7.甲和乙签订了一份合同,约定同时履行。甲在自己没有履行的情况下,请求乙履行,乙予以拒绝,这时乙所行使的权利是()(易混)

工程造价试题(答案)

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

全国Ⅰ卷II卷Ⅲ卷全国123卷2018年普通高校招生全国统一考试语文试卷答案解析真题试题

1卷 绝密★启用前 2018年普通高等学校招生全国统一考试 语文 (河南、河北、山西、江西、湖北、湖南、广东、安徽、福建使用)注意事项: 1.答卷前,考生务必将自己的姓名和座位号填写在答题卡上。 2.回答选择题时,选出每小题答案后,用铅笔把答题卡对应题目的答案标号涂黑。如需改动,用橡皮擦干净后,再选涂其他答案标号。回答非选择题时,将答案写在答题卡上。写在本试卷上无效。 3.考试结束后,将本试卷和答题卡一并交回。 一、现代文阅读(35分) (一)论述类文本阅读(本题共3小题,9分) 阅读下面的文字,完成下面3个小题。 诸子之学,兴起于先秦,当时一大批富有创见的思想家喷涌而出,蔚为思想史之奇观。在狭义上,诸子之学与先秦时代相联系;在广义上,诸子之学则不限于先秦而绵延于此后中国思想发展的整个过程,这一过程至今仍没有终结。 诸子之学的内在品格是历史的承继性以及思想的创造性和突破性。“新子学”,即新时代的诸子之学,也应有同样的品格。这可以从“照着讲”和“接着讲”两个方面来理解。一般而言,“照着讲”主要是从历史角度对以往经典作具体的实证性研究,诸如训诂、校勘、文献编纂,等等。这方面的研究涉及对以往思想的回顾、反思,既应把握历史上的思想家实际说了些什么,也应总结其中具有创造性和生命力的内容,从而为今天的思考提供重要的思想资源。 与“照着讲”相关的是“接着讲”,从思想的发展与诸子之学的关联看,“接着讲”接近诸子之学所具有的思想突破性的内在品格,它意味着延续诸子注重思想创造的传统,以近代以来中西思想的互动为背景,“接着讲”无法回避中西思想之间的关系。在中西之学已相遇的背景下,“接着讲”同时展开为中西之学的交融,从更深的层次看,这种交融具体展开为世界文化的建构与发展过程。中国思想传统与西方思想传统都构成了世界文化的重要资

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

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

初中政治模拟试题及答案

初中政治模拟试题及答案 初中政治模拟试题及答案 初中政治模拟试题及答案 人教版思想品德八年级上册第一单元测试题及答案 一、单项选择题(将正确答案前面的字母写在相应的括号里,每小题2分,共10分) 1、我们与父母之间产生代沟的直接原因是() A、生活经验 B、年龄差距 C、人生经历 D、兴趣爱好 2、与父母发生冲突时,应采取的正确方法是() A、以强硬的态度顶撞 B、以粗暴的举止反抗 C、不理不睬,冷淡相对 D、冷静下来,心平气和地与父母商量 3、现在的家庭结构一般为() ①主干家庭②单亲家庭③核心家庭④联合家庭 A、①③ B、②③ C、③④ D、①② 4、孝敬父母() A、是道德义务,但不是法律义务 B、是法律义务,但不是道德义务 C、既是道德义务,也是法律义务 D、既不是道德义务,也不是法律义务

5、有人对500名中学生进行问卷调查,反映与父母有代沟的选择较为集中,具体表现在“穿衣打扮”、“父母唠叨”、“业余爱好”、“零用钱消费”、“课外读物”、“交友”、“隐私”等方面的分歧,这表明() A、严也是一种爱 B、我们要努力克服逆反心理 C、代沟的实质是反映在年龄差异背后的多重代际差异 D、在家庭交往中,与父母不必太计较 二、不定项选择题(有一个或一个以上是正确的。请把正确答案前面的字母填在相应的括号内。每小题3分,共12分) 1、下列体现父母与子女出现代沟的是() A、小云在家听流行歌曲,妈妈说心烦,要她关掉 B、小勇喜欢足球,经常向爸爸要钱买《足球报》,爸爸说他不务正业 C、妈妈与圆圆到商场买衣服,圆圆看中的妈妈不肯买,妈妈看中的圆圆不喜欢 D、吃饭时爸爸和文文分析文文学习成绩下降的原因 2、小莉过几天就要过生日了,小莉想请几个要好的同学来参加她的生日聚会。可小莉家境并不富裕,父母上班又忙。因此小莉应该() A、先征求父母的意见 B、考虑家里的难处,量力而行 C、请同学去饭店大吃一顿 D、永远取消生日聚会

12315受理人员考试试卷

12315受理人员考试试卷 分值:100分 一、填空题(10分): 1、消费者为生活消费需要购买、使用商品或者接受服务,其权益受《中华人民共和国消费者权益保护法》保护。 2、经营者与消费者进行交易,应当遵循自愿、平等、公平、诚实信用的原则。 3、消费者为二人以上,其申诉的是共同标的的,工商行政管理机关认为可以合并受理,并经当事人同意的,为共同申诉。 4、消费者受尊重权是指消费者在购买、使用商品,接受服务时享有的人格尊严、民族风俗习惯受到尊重的权利。 5、生产不符合食品安全标准的食品或者销售明知是不符合食品安全标准的食品,消费者除要求赔偿损失外,还可以向生产者或者销售者要求支付价款十倍的赔偿金。 6、保质期是指预包装食品在标签食品在标签指明的贮存条件下保持品质的期限。 二、单选题(20分): 1、工商行政管理机关应当自接到申诉之日起(C )日内,审核完毕并作处理? A、15; B、7;

C、5; D、3. (《工商行政管理机关受理消费者申诉暂行办法》第十六条的规定) 2、实施三包的部分商品目录内的产品自售出之日起15日内,发生性能故障,消费者可以选择(C)? A、退货、换货或修理; B、换同型号同规格产品,费用由修理者承担; C、换货或修理; D、退货或修理。 (《部分商品修理更换退货责任规定》第十条) 3、消费者于先生于2007年5月17日购买一台空调,该空调主要部件三包有效期截止日为( A ): A、2010年5月16日 B、2010年5月17日 C、2010年5月18日 D、2010年5月19日 (《部分商品修理更换退货责任规定》第八条,三包有效期从开具发票之日起计算,空调主要部件三包有效期为3年) 4、消费者于先生于2009年5月2日购买一台笔记本电脑,该笔记本电脑本整机三包有效期截止日为( B ): A、2010年5月1日 B、2010年5月2日 C、2010年5月3日 D、2010年5月4日

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

初中政治试题及答案

2013咸阳师院附中青年教师业务考试初中政治 (共100分,90分钟) 一、单项选择(本题包括11小题,每小题2分,共22分。每小题给出的四个选项中,只有一个选项最符合题目要求) 1、犯罪的法律标志是() A、严重违法性 B、刑罚当罚性 C、刑事违法性 D、严重危害性 2.商务部2012年11月15日公布《酒类流通管理办法(修订)(征求意见稿)》,规定酒类流通实行经营者备案登记制和溯源制;向______售酒者,处2 000元以下罚款。() A.未成年人B.老年人C.智障人士D.妇女 3.从2012年秋季学期开始,______全面实现15年免费教育,即学前3年、小学6年、初中3年和高中3年。() A.新疆B.西藏C.贵州D.甘肃 4. 2012年11月8日中国共产党第______次全国代表大会在北京人民大会堂开幕。中共中央总书记胡锦涛代表十七届中央委员会作了题为《坚定不移沿着中国特色社会主义道路前进为全面建成小康社会而奋斗》的报告。报告中首次将______确立为党必须长期坚持的指导思想。() A.十七科学发展观 B. 十七三个代表 C. 十八科学发展观 D. 十八三个代表 5.在日常生活中,尊重他人最基本的表现是() ①对人有礼貌②尊重他人的劳动③尊重他人的隐私④尊重他人的人格⑤专讲他人的好话 A.①②④B.①②③C.①②③④D.①②③④⑤ 6.下列属于中华人民共和国公民的有() ①正在中国读书的外国留学生②潜逃在国外的中国政府腐败官员③尚未成年没有领取身份证的中学生 ④在监狱服刑的被剥夺政治权利的罪犯 A、①②③ B、①③④ C、①②④ D、②③④ 7.十一届全国人大五次会议通过的关于修改刑事诉讼法的决定,对我国现行刑事诉讼法律制度作了重要补充和完善,修改后的《刑事诉讼法》将于2013年1月1日起施行。全国人大修改刑事诉讼法是在行使。() A.监督权 B.重大事项决定权 C.立法权 D.人事任免权 8.浙江省教育厅发布建立中小学教师师德师风检查制度,对师德考核不合格的教师实行一票否决制,体现了对未成年人的() A.家庭保护B.社会保护C.司法保护D.学校保护 9.2011年5月至12月,全国公安机关开展了为期约七个月的网上追逃专项督察“清网行动”,共抓获涉嫌故意杀人在逃人员1.2万人,潜逃10年以上在逃人员 2.3万人。我国公安机关深入开展“清网行动”。() ①说明国家的中心工作已经开始转移②有利于落实依法治国的基本方略 ③从根本上杜绝违法犯罪现象的发生④有利于社会主义和谐社会的建设 A.①③ B.②④ C.①④ D.②③ 10.截止到2011年2月底,我国现行有效法律共有239件,行政法规690多件,地方性法规近8600件。制定出完备的法律体现了依法治国基本要求中的() A.违法必究 B.执法必严 C.有法必依 D.有法可依 11. 2011年7月1日庆祝中国共产党成立90周年大会在人民大会堂举行。胡锦涛在讲话中指出,全党都要关注青年、关心青年、关爱青年,倾听青年心声,鼓励青年成长,支持青年创业。我们当代青年的崇高使命是() A.把个人的前途命运与祖国的前途命运结合起来 B.实现共产主义远大理想

管理试题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.被管理者有较

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

基础知识辅导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.工人在夜间施工导致的施工降效费用应属于()。

初三政治试题及答案精选

初三政治试题及答案精选 八年级政治 一、单项选择题。(每题只有一个正确选项,请把正确的答案的字母填入答题卷相应表格内, 每小题2分,共56分) 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、小媛喜欢某个歌星,只要有她偶像的演唱会,她一定

考试题123

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

工程造价试题附答案

工程造价试题 一、单项选择题(共30 小题,每题2 分,共60 分,每题的备选项中,只有1 个最符合题意。) 1.根据我国现行的建设项目投资构成,建设投资中没有包括的费用是()。 A.工程费用 B. 工程建设其他费用 C. 建设期利息 D. 预备费 2.建设项目的造价是指项目总投资中的()。 A.固定资产与流动资产投资之和 B.建筑安装工程投资 C.建筑安装工程费与设备费之和 D.固定资产投资总额 3.政府部门,行业协会,建设单位、施工单位及咨询机构通过协调工作,共同完成工程造价控制任务,属于建设工程全面造价管理中的()。 A.全过程造价管理 B.全方位造价管理 C.全寿命期造价管理 D.全要素造价管理 4.某项目购买一台国产设备,其购置费为1325 万元,运杂费率为 10.6%,则该设备的原价为()万元。 A.1198 B.1160 C.1506 D.1484

5.施工定额的编制应反映()。 A.社会平均水平 B. 平均先进水平 C.社会先进水平 D. 企业实际水平 6.根据《招投标法》,对于依法必须进行招标的项目,自招标文件开始发出之日起至投标人提交投标文件截止之日止,最短不得少于 ()日。 A.10 B.20 C.30 D.60 7.对工程量清单概念表述不正确的是()。 A、工程量清单是包括工程数量的明细清单 B、工程量清单也包括工程数量相应的单价 C工程量清单由招标人提供 D工程量清单是招标文件的组成部分 8.当初步设计达到一定深度,建筑结构比较明确时,编制建筑工程 概算可以采用()。 A.单位工程指标法 B. 概算指标法 C、概算定额法D. 类似工程概算法 9.根据《招标投标法实施条例》,招标文件中要求中标人提交履约保 证金的,保证金不得超过中标合同金额的()。 A.2% B.5% C.10% D.20% 10.下列关于招标代理的叙述中,错误的是()。 A.招标人有权自行选择招标代理机构,委托其办理招标事宜 B.招标人具有编制招标文件和组织评标能力的,可以自行办理招标事

2018年中考政治真题试题(含解析)

山东省菏泽市2018年中考思想品德试卷 一、辨别题(认真思考下列各题的说法,每小题1分,共10分) 1..早晨起床后,对着镜子冲自己自信地微笑,告诉自己:新的一天开始了,我要开开心心地度过今天,这种控制情绪的方法是理智调控法.错误(判断对错) 【分析】本题考察了有关怎样调控自己的情绪的内容,要学会调控自己的情绪. 【解答】本题材料“对着镜子冲自己自信地微笑,告诉自己:新的一天开始了,我要开开心心地度过今天”,这种控制情绪的方法是积极的自我暗示法,不是理智调控法.所以观点不正确. 故答案为:观点错误. 【点评】做判断题要认真读题,观点的正误往往在一个字或几个字上,并联系所学知识,做出正确的判断. 2..老师是我们成长路上的引路人,我们应该虚心听取老师的教诲,真诚地接受老师的批评.正确(判断对错) 【分析】本题考查学会与老师交往.我们应该理解老师,并能正确地看待自己不理解老师的行为,谅解老师的过失.树立积极主动与老师沟通、交往的意识.学会用合适的方法处理与老师之间矛盾、冲突,学会与老师友好交往. 【解答】依据教材知识,老师是我们成长路上的引路人,我们应该虚心听取老师的教诲,真诚地接受老师的批评.题目表述正确. 故答案为:正确. 【点评】解答本题的关键是审清题意,依据教材知识点作答即可. 3..有些中学生认为:没有iphone,你out了!错误(判断对错) 【分析】本题属于“关心社会,亲近社会”这一知识点,需要在掌握参与社会生活的重要性,参与社会生活要注意,正确认识从众心理,要养成亲社会的行为等相关知识的基础上,对材料进行深入的分析,从而得出结论. 【解答】根据教材知识,虚荣心表现在行为上,主要是盲目攀比,好大喜功,过分看重别人的评价,自我表现欲太强,有强烈的嫉妒心等等.有些中学生认为:没有iphone,你out 了!是虚荣心的表现,是错误的观点. 故答案为:错误. 【点评】此题要准确掌握课本知识正确认识从众心理,在此基础上即可顺利作答. 4..坚持做自己不感兴趣但有意义的事情,这是锻炼个人意志的好方法.正确(判断对错) 【分析】题目考查的是磨砺坚强的意志. 【解答】题干的核心是培养坚强意志的途径,培养坚强的意志:确立明确的目标,做自己不感兴趣但有意义的事情,加强自我管理和约束,从小事做起,从现在做起.故题干正确.【点评】掌握培养坚强意志的途径是解答该题的关键.

工程造价试题答案

工程造价试题答案

《建筑工程造价管理》第2页,共10页 湖北第二师范学院继续教育学院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 毛利 7 当项目盈利时,CI CO 应该(A) A 大于0 B 大于等于0 C 小于0 D 等于0 8 某项目的报告期综合人工单价为10,参照工程综 《建筑工程造价管理》第3页,共10页

初中政治模拟试题及答案

初中政治模拟试题及答案 导读:我根据大家的需要整理了一份关于《初中政治模拟试题及答案》的内容,具体内容:在期末的时候,对于初三政治在期末复习要怎样做练习呢?还很困惑的话,那不妨和我一起来做份初中政治模拟试题,希望对各位有帮助!初中政治模拟试题一、请你选择:下列各题,各有一... 在期末的时候,对于初三政治在期末复习要怎样做练习呢?还很困惑的话,那不妨和我一起来做份初中政治模拟试题,希望对各位有帮助! 初中政治模拟试题 一、请你选择:下列各题,各有一个最符合题意的答案,请将正确答案的序号字母填在下面的表格内。(每小题2分,共40分) 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.缩小地区发展差距,实现共同富裕 8. 中央电视台"心连心艺术团""同一首歌"剧组,先后在全国各地演出百余场,有上百万的观众观演出并给予高度评价。这些活动,在加强( )中发挥了重要作用 A.社会主义经济建设 B.社会主义精神文明建设 C.环境设施建设 D.物质文明建设 9.下列关于共产主义的说法,错误的是 A.共产主义社会将是物质财富极大丰富的社会 B.共产主义社会将是人 类历史上最美好、最进步的社会 C.共产主义社会将是每个人自由而片面发展的社会D.共产主义社会将是人民精神境界极大提高的社会

职业教育学试题123

第五章职业学校教师 一、填空题 1、教师是履行(教育教学职责)的专业人员,承担(教书育人)工作,培养社会主义事业建设者和接班人,提高民族素质的使命。 2、(1681)年拉萨尔在(法)国创立的世界上第一所师资培训学校,标志着师范教育的诞生。 3、(1897)年盛宣怀在上海创办(南洋公学)下设师范院是我国最早的师范学校。 4、(1979)年国务院批准建立天津技工师范学院等四所学校,这是我国最早建立的专门为(职业学校)培养师资的高等师范学校。 5、我国《教师法》规定每年(9月10日)为教师节。 6、职业学校教师的职业道德是指教师在职业教育工作中应当遵守的(行为规范)和准则,是每一个教师对(社会)和(受教育者)所承担的道德责任和义务。 7、教师的职业道德表现在教师如何对待(职业教育事业)、如何对待(学生)、如何对待(教师集体)、如何对待(自身)四个方面。 8、教师职业技能是教师必须掌握和运用的,从事教育和教学的基本技巧、方法和能力。一般包括(讲普通话和口语表达技能)、(书写规范汉字和书面表达技能)、(教学工作技能)、(教育和管理学生技能)四项技能。 9、教师书写规范汉字包括两方面内容,一是(用字规范);二是(书写规范)。 10、班会活动按其性质大致可分为(主题性班会)、(活动性班会)、(知识性班会)、(教育性班会)、节日性班会及学生自己组织的班会六种形式。 11、我国教师资格分为(幼儿园)教师资格、(小学)教师资格、初级中学教师资格、高级中学教师资格、(中等职业学校)教师资格、(中等职业学校实习指导)教师资格、高等学校教师资格等七种。 二、选择题 1、下列人员中不属于教师的是(C) A.指导学生实习的人员 B.高等学校中的学生辅导员 C.教育行政机关工作人员 D.学校学生处工作人员 2、在学生成长发展中教师起(A.) A. 主导作用 B.决定作用 C. 强制作用 D. 3、教师职业道德的核心是() A.忠于人民教育事业 B.热爱学生 C.团结同事 D.以身作则 4、提出“师者,人之模范也”的教育家是(D) A.孔子 B.孟子 C.韩非子 D.杨雄 5、最早称教师为“人类灵魂工程师”的人是(C) A.赫尔巴特 B.夸美纽斯 C.加里宁 D.列宁 6、教师职业产生于(B)

相关主题