sas samplepaper website

12
7/30/12 SAS Global Certification program 1/12 support.sas.com/certify/creds/samples.html#bp Sample Questions The following examples of multiple choice questions have been provided to illustrate some of the various types of questions that may appear on the SAS Global Certification Program exams. Please note: These examples are not inclusive and do not necessarily represent all of the types of questions that comprise the exams. The questions below are not designed to assess an individual's readiness to take a certification exam. SAS Base Programming for SAS 9 SAS Advanced Programming for SAS 9 Clinical Trials Programming Using SAS 9 Predictive Modeling Using SAS Enterprise Miner 6 SAS Platform Administration for SAS 9 SAS Data Integration Developer for SAS 9 SAS BI Content Developer for SAS 9 SAS Base Programming for SAS 9 Item 1 The following program is submitted. data WORK.TEST; input Name $ Age; datalines; John +35 ; run; Which values are stored in the output data set? A. Name Age --------------------- John 35 B. Name Age --------------------- John (missing value) C. Name Age --------------------- (missing value) (missing value) D. The DATA step fails execution due to data errors. correct_answer = "A" Item 2 Given the SAS data set WORK.ONE: Id Char1 --- ----- 182 M 190 N 250 O 720 P and the SAS data set WORK.TWO: Id Char2 --- ----- 182 Q 623 R 720 S The following program is submitted: data WORK.BOTH; merge WORK.ONE WORK.TWO; by Id; run; What is the first observation in the SAS data set WORK.BOTH? A. Id Char1 Char2 --- ----- ----- 182 M B. Id Char1 Char2 --- ----- ----- 182 Q C. Id Char1 Char2 --- ----- ----- 182 M Q D. Id Char1 Char2 --- ----- ----- 720 P S Providing software solutions since 1976

Upload: mohammad-ershad-shaik

Post on 18-Apr-2015

52 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: SAS Samplepaper Website

7/30/12 SAS Global Certification program

1/12support.sas.com/certify/creds/samples.html#bp

Sample Questions

The following examples of multiple choice questions have been provided to illustrate some of the various types of questions that may appear on theSAS Global Certification Program exams.

Please note: These examples are not inclusive and do not necessarily represent all of the types of questions that comprise the exams. Thequestions below are not designed to assess an individual's readiness to take a certification exam.

SAS Base Programming for SAS 9

SAS Advanced Programming for SAS 9

Clinical Trials Programming Using SAS 9

Predictive Modeling Using SAS Enterprise Miner 6

SAS Platform Administration for SAS 9

SAS Data Integration Developer for SAS 9

SAS BI Content Developer for SAS 9

SAS Base Programming for SAS 9

Item 1

The following program is submitted.

data WORK.TEST; input Name $ Age;datalines;John +35;run;

Which values are stored in the output data set?

A. Name Age---------------------John 35

B. Name Age---------------------John (missing value)

C. Name Age---------------------(missing value) (missing value)

D. The DATA step fails execution due to data errors.

correct_answer = "A"

Item 2

Given the SAS data set WORK.ONE:

Id Char1--- -----182 M190 N250 O720 P

and the SAS data set WORK.TWO:

Id Char2--- -----182 Q623 R720 S

The following program is submitted:

data WORK.BOTH; merge WORK.ONE WORK.TWO; by Id;run;

What is the first observation in the SAS data set WORK.BOTH?

A. Id Char1 Char2--- ----- -----182 M

B. Id Char1 Char2--- ----- -----182 Q

C. Id Char1 Char2--- ----- -----182 M Q

D. Id Char1 Char2--- ----- -----720 P S

Providing software solutions since 1976

Page 2: SAS Samplepaper Website

7/30/12 SAS Global Certification program

2/12support.sas.com/certify/creds/samples.html#bp

correct_answer = "C"

Item 3

Given the text file COLOR.TXT:

----+----1----+----2----+----RED ORANGE YELLOW GREENBLUE INDIGO PURPLE VIOLETCYAN WHITE FUCSIA BLACKGRAY BROWN PINK MAGENTA

The following SAS program is submitted:

data WORK.COLORS; infile 'COLORS.TXT'; input @1 Var1 $ @8 Var2 $ @; input @1 Var3 $ @8 Var4 $ @;run;

What will the data set WORK.COLORS contain?

A. Var1 Var2 Var3 Var4------ ------ ------ ------RED ORANGE RED ORANGEBLUE INDIGO BLUE INDIGOCYAN WHITE CYAN WHITEGRAY BROWN GRAY BROWN

B. Var1 Var2 Var3 Var4------ ------ ------ ------RED ORANGE BLUE INDIGOCYAN WHITE GRAY BROWN

C. Var1 Var2 Var3 Var4------ ------ ------ ------RED ORANGE YELLOW GREENBLUE INDIGO PURPLE VIOLET

D. Var1 Var2 Var3 Var4------ ------ ------ ------RED ORANGE YELLOW GREENBLUE INDIGO PURPLE VIOLETCYAN WHITE FUCSIA BLACKGRAY BROWN PINK MAGENTA

correct_answer = "A"

Item 4

Given the SAS data set WORK.INPUT:

Var1 Var2------ -------A oneA twoB threeC fourA five

The following SAS program is submitted:

data WORK.ONE WORK.TWO; set WORK.INPUT; if Var1='A' then output WORK.ONE; output;run;

How many observations will be in data set WORK.ONE?

Enter your numeric answer. Do not add leading or trailing spaces to your answer.

correct_answer = "8"

Item 5

The following SAS program is submitted:

data WORK.LOOP; X = 0; do Index = 1 to 5 by 2; X = Index; end;run;

Upon completion of execution, what are the values of the variables X and Index in the SAS data set named WORK.LOOP?

A. X = 3, Index = 5

B. X = 5, Index = 5

C. X = 5, Index = 6

D. X = 5, Index = 7

correct_answer = "D"

Item 6

The following SAS program is submitted:

proc format; value score 1 - 50 = 'Fail' 51 - 100 = 'Pass';run;

Which one of the following PRINT procedure steps correctly applies the format?

Page 3: SAS Samplepaper Website

7/30/12 SAS Global Certification program

3/12support.sas.com/certify/creds/samples.html#bp

A. proc print data = SASUSER.CLASS; var test; format test score;run;

B. proc print data = SASUSER.CLASS; var test; format test score.;run;

C. proc print data = SASUSER.CLASS format = score; var test;run;

D. proc print data = SASUSER.CLASS format = score.; var test; run;

correct_answer = "B"

Item 7

This item will ask you to provide a line of missing code;

The SAS data set WORK.INPUT contains 10 observations, and includes the numeric variable Cost.

The following SAS program is submitted to accumulate the total value of Cost for the 10 observations:

data WORK.TOTAL; set WORK.INPUT; <insert code here> Total=Total+Cost;run;

Which statement correctly completes the program?

A. keep Total;

B. retain Total 0;

C. Total = 0;

D. If _N_= 1 then Total = 0;

correct_answer = "B"

Item 8

This question will ask you to provide a line of missing code.

Given the following data set WORK.SALES:

SalesID SalesJan FebSales MarchAmt------- -------- -------- --------W6790 50 400 350W7693 25 100 125W1387 . 300 250

The following SAS program is submitted:

data WORK.QTR1; set WORK.SALES; array month{3} SalesJan FebSales MarchAmt; <insert code here>run;

Which statement should be inserted to produce the following output?

SalesID SalesJan FebSales MarchAmt Qtr1------- -------- -------- -------- ----W6790 50 400 350 800W7693 25 100 125 250W1387 . 300 250 550

A. Qtr1 = sum(of month{_ALL_});

B. Qtr1 = month{1} + month{2} + month{3};

C. Qtr1 = sum(of month{*});

D. Qtr1 = sum(of month{3});

correct_answer = "C"

Item 9

Given the following SAS error log

44 data WORK.OUTPUT; 45 set SASHELP.CLASS; 46 BMI=(Weight*703)/Height**2; 47 where bmi ge 20; ERROR: Variable bmi is not on file SASHELP.CLASS. 48 run;

What change to the program will correct the error?

A. Replace the WHERE statement with an IF statement

B. Change the ** in the BMI formula to a single *

C. Change bmi to BMI in the WHERE statement

D. Add a (Keep=BMI) option to the SET statement

correct_answer = "A"

Item 10

Page 4: SAS Samplepaper Website

7/30/12 SAS Global Certification program

4/12support.sas.com/certify/creds/samples.html#bp

The following SAS program is submitted:

data WORK.TEMP; Char1='0123456789'; Char2=substr(Char1,3,4);run;

What is the value of Char2?

A. 23

B. 34

C. 345

D. 2345

correct_answer = "D"

SAS Advanced Programming for SAS 9

Item 1

Given the following SAS data sets ONE and TWO:

The following SAS program is submitted:

proc sql; select one.*, sales from one right join two on one.year = two.year;quit;

Which one of the following reports is generated?

A.

B.

C.

D.

correct_answer = "D"

Item 2

Given the following SAS data sets ONE and TWO:

The following SAS program is submitted creating the output table THREE:

data three;merge one (in = in1) two (in = in2); by num;run;

Which one of the following SQL programs creates an equivalent SAS data set THREE?

A. proc sql;create table three as select * from one full join two where one.num = two.num;quit;

B. proc sql;create table three as select coalesce(one.num, two.num) as NUM, char1, char2 from one full join two where one.num = two.num;

Page 5: SAS Samplepaper Website

7/30/12 SAS Global Certification program

5/12support.sas.com/certify/creds/samples.html#bp

quit;

C. proc sql;create table three as select one.num, char1, char2 from one full join two on one.num = two.num;quit;

D. proc sql;create table three as select coalesce(one.num, two.num) as NUM, char1, char2 from one full join two on one.num = two.num;quit;

correct_answer = "D"

Item 3

The following SAS program is submitted:

%let type = RANCH;proc sql; create view houses as select * from sasuser.houses where style = "&type";quit;

%let type = CONDO;

proc print data = houses;run;

The report that is produced displays observations whose value of STYLE are all equal to RANCH.

Which one of the following functions on the WHERE clause resolves the current value of the macro variable TYPE?

A. GET

B. SYMGET

C. %SYMGET

D. &RETRIEVE

correct_answer = "B"

Item 4

The SAS data set SASDATA.SALES has a simple index on the variable DATE and a variable named REVENUE with no index.

In which one of the following SAS programs is the DATE index considered for use?

A. proc print data = sasdata.sales; by date;run;

B. proc print data = sasdata.sales; where month(date) = 3;run;

C. data march; set sasdata.sales; if '01mar2002'd < date < '31mar2002'd;run;

D. data march; set sasdata.sales; where date < '31mar2002'd or revenue > 50000;run;

correct_answer = "A"

Clinical Trials Programming Using SAS 9

Item 1

What is the main focus of Good Clinical Practices (GCP)?

A. harmonized data collection

B. standard analysis practices

C. protection of subjects

D. standard monitoring practices

correct_answer = "C"

Item 2

Vital Signs are a component of which SDTM class?

A. Findings

B. Interventions

C. Events

D. Special Purpose

correct_answer = "A"

Item 3

Page 6: SAS Samplepaper Website

7/30/12 SAS Global Certification program

6/12support.sas.com/certify/creds/samples.html#bp

Which option in the PROC EXPORT procedure overwrites an existing file?

A. NEW

B. OVERWRITE

C. REPLACE

D. KEEP

correct_answer = "C"

Item 4

Given the following data set WORK.DEMO:

PTID Sex Age Height Weight 689574 M 15 80.0 115.5 423698 F 14 65.5 90.0 758964 F 12 60.3 87.0 653347 F 14 62.8 98.5 493847 M 14 63.5 102.5 500029 M 12 57.3 83.0 513842 F 12 59.8 84.5 515151 F 15 62.5 112.5 522396 M 13 62.5 84.0 534787 M 12 59.0 99.5 875642 F 11 51.3 50.5 879653 F 15 75.3 105.0 542369 F 12 56.3 77.0 698754 F 11 50.5 70.0 656423 M 16 72.0 150.0 785412 M 12 67.8 121.0 785698 M 16 72.0 110.0 763284 M 11 57.5 85.0 968743 M 14 60.5 85.0 457826 M 18 74.0 165.0

The following SAS program is submitted:

proc print data=WORK.DEMO(firstobs=5 obs=10); where Sex='M'; run;

How many observations will be displayed?

A. 4

B. 6

C. 7

D. 8

correct_answer = "B"

Item 5

Given the following partial data set:

SUBJID SAF ITT OTH 101 1 . 1 103 1 1 1 106 1 1 1 107 1 . 1

The following SAS program is submitted:

proc format; value stdypfmt 1="Safety" 2="Intent-to-Treat" 3="Other"; run;

data test; set temp (keep=SUBJID ITT SAF OTH ); by subjid; length STDYPOP $200; array pop{*} SAF ITT OTH ; do i=1 to 3; if STDYPOP="" and pop{i}=1 then STDYPOP=put(i, stdypfmt.); else if STDYPOP̂ ="" and pop{i}=1 then STDYPOP = trim(STDYPOP)||"/"||put(i, stdypfmt.); end; run;

What is the value of STDYPOP for SUBJID=107?

correct_answer = "Safety/Other"

Item 6

This question will ask you to provide a line of missing code.

Given the data set WORK.STUDYDATA with the following variable list:

# Variable Type Len Label 2 DAY Char 8 Study Day 3 DIABP Num 8 Diastolic Blood Pressure 1 TRT Char 8 Treatment

The following SAS program is submitted:

proc means data=WORK.STUDYDATA noprint; <insert code here> class TRT DAY; var DIABP; output out=WORK.DIAOUT mean=meandp; run;

WORK.DIAOUT should contain:

the mean diastolic blood pressure values for every day by treatment group

the overall mean diastolic blood pressure for each treatment group

Which statement correctly completes the program to meet these requirements?

A. where trt or trt*day;

Page 7: SAS Samplepaper Website

7/30/12 SAS Global Certification program

7/12support.sas.com/certify/creds/samples.html#bp

B. types trt trt*day;

C. by trt day;

D. id trt day;

correct_answer = "B"

Item 7

The following SAS program is submitted:

%let member1=Demog; %let member2=Adverse; %let Root=member; %let Suffix=2; %put &&&Root&Suffix;

What is written to the SAS log?

A. &member2

B. Adverse

C. &&&Root&Suffix

D. WARNING: Apparent symbolic reference ROOT2 not resolved.

correct_answer = "B"

Item 8

This question will ask you to provide a line of missing code.

The following SAS program is submitted:

proc format ; value dayfmt 1='Sunday' 2='Monday' 3='Tuesday' 4='Wednesday' 5='Thursday' 6='Friday' 7='Saturday' ; run ;

proc report data=diary ; column subject day var1 var2 ; <insert code here> run ;

In the DIARY data set, the format DAYFMT is assigned to the variable DAY. Which statement will cause variable DAY to be printed in itsunformatted order?

A. define day / order 'Day' ;

B. define day / order order=data 'Day' ;

C. define day / order noprint 'Day' ;

D. define day / order order=internal 'Day' ;

correct_answer = "D"

Item 9

You are using SAS software to create reports that will be output in a Rich Text Format so that it may be read by Microsoft Word. The report willspan multiple pages and you want to display a '(Continued)' text at the end of each page when a table spans multiple pages.

Which statement can you add to the SAS program to ensure the inclusion of the '(Continued)' text?

A. ods rtf file='report.rtf';

B. ods tagsets.rtf file='report.rtf';

C. ods tagsets.rtf file='report.rtf' break='Continued';

D. ods file open='report.rtf' type=rtf break='(Continued)';

correct_answer = "B"

Item 10

What is the primary purpose of programming validation?

A. Ensure that the output from both the original program and the validation program match.

B. Efficiently ensure any logic errors are discovered early in the programming process.

C. Justify the means used to accomplish the outcome of a program and ensure its accurate representation of the original data.

D. Document all specifications pertaining to programmed output and ensure all were reviewed during the programming process.

correct_answer = "C"

Predictive Modeling Using SAS Enterprise Miner 6

Item 1

Open the diagram labeled Practice A within the project labeled Practice A. Perform the following in SAS Enterprise Miner:

1. Set the Clustering method to Average.

2. Run the Cluster node.

Use this project to answer the next two questions:

What is the Importance statistic for MTGBal (Mortgage Balance)?

A. 0.32959

Page 8: SAS Samplepaper Website

7/30/12 SAS Global Certification program

8/12support.sas.com/certify/creds/samples.html#bp

B. 0.42541

C. 0.42667

D. 1.000000

correct_answer = "C" You must change the clustering method to average and run the cluster node first. Select view results and look in the outputwindow and view the Variable Importance results.

What is the Cubic Clustering Criterion statistic for this clustering?

A. 5.00

B. 14.69

C. 5862.76

D. 67409.93

correct_answer = "B" Run the diagram flow and view the results. From the results window, select View -> Summary Statistics -> CCC Plot andmouse over where the data point and the line intersect. This will display the CCC statistic.

Item 2

1. Create a project named Insurance, with a diagram named Explore.

2. Create the data source, DEVELOP, in SAS Enterprise Miner. DEVELOP is in the directory c:\workshop\Practice.

3. Set the role of all variables to Input, with the exception of the Target variable, Ins (1= has insurance, 0= does not have insurance).

4. Set the measurement level for the Target variable, Ins, to Binary.

5. Ensure that Branch and Res are the only variables with the measurement level of Nominal.

6. All other variables should be set to Interval or Binary.

7. Make sure that the default sampling method is random and that the seed is 12345.

Use this project to answer the next questions. (Note: only 2 of 7 questions are displayed for this example)

The variable Branch has how many levels?

A. 8

B. 12

C. 19

D. 47

correct_answer = "C" This information can be obtained by viewing the PROC FREQ output.

What is the mean credit card balance (CCBal) of the customers with a variable annuity?

A. $0.00

B. $8,711.65

C. $9,586.55

D. $11,142.45

correct_answer = "D" You can use a Stat Explore Node and view the output for the Descriptive Statistics for CCBal by level of the target variable.

SAS Platform Administration for SAS 9

Item 1

The location of the repository manager physical files can be found in:

A. SAS Management Console.

B. the metadata server's omaconfig.xml file.

C. the foundation repository.

D. the metadata server's sasv9.cfg file.

correct_answer = "B"

Item 2

Every SAS platform implementation includes:

A. a foundation repository and a repository manager.

B. a foundation repository and a custom repository.

C. a custom repository and a repository manager.

D. multiple project repositories.

correct_answer = "A"

Item 3

Which procedure allows a platform administrator to update table metadata?

A. METAUPDATE_RULE

B. METASELECT

C. METATABLE

D. METALIB

correct_answer = "D"

Item 4

Which statement regarding pre-assigned libraries is true?

A. Pre-assigned libraries reduce the initialization time for a workspace server.

B. Pre-assigned libraries always connect to an RDBMS at server initialization.

C. Pre-assigned libraries always connect to a base SAS library at server initialization.

D. Pre-assigned libraries do not have to be identical across all SAS client applications.

correct_answer = "C"

Item 5

Page 9: SAS Samplepaper Website

7/30/12 SAS Global Certification program

9/12support.sas.com/certify/creds/samples.html#bp

A platform administrator needs to retrieve from the metadata a complete LIBNAME statement including the user ID and password.

To complete this task, the platform administrator must be connected to SAS Management Console with what type of user access in themetadata?

A. Access to the credentials associated with libraries created with the METALIB procedure.

B. Access to credentials established by the LIBNAME engine.

C. Access to credentials associated with users in the outbound login.

D. Access to credentials for the authentication domain associated with the database server.

correct_answer = "D"

Item 6

By default, which groups have WriteMetadata on the Foundation repository?

A. PUBLIC

B. SASUSERS

C. ADMINISTRATORS ONLY

D. SAS SYSTEM SERVICES ONLY

correct_answer = "B"

Item 7

Given the following authorization settings for Library Sales2:

Library Sales2's parent folder has an explicit grant of RM for Mary.

Library Sales2 has an explicit denial of RM for PUBLIC.

Which statement is true?

A. Mary can see Library Sales2.

B. Mary can see data flagged as PUBLIC in Library Sales2.

C. Mary cannot see Library Sales2.

D. Mary can see Library Sales2, but not any data flagged as PUBLIC.

correct_answer = "C"

Item 8

Which statement is FALSE regarding the WriteMemberMetadata (WMM) permission?

A. By default, it mirrors the WriteMetadata permission.

B. It only applies to folders.

C. If WriteMetadata is granted, then you should not deny WMM.

D. WMM is inherited from one folder to another folder.

correct_answer = "D"

Item 9

Content has been exported from a SAS 9.1.3 environment into a SAS 9.2 development environment. After the export, the platform administratorattempts to promote an object from the SAS 9.2 development environment into a production environment.

What will be the result of this promotion attempt?

A. The promotion will not be allowed because objects from SAS 9.1.3 cannot be promoted to SAS 9.2.

B. The promotion will not be allowed because objects in a development environment cannot be promoted to a production environment.

C. The promotion will be allowed assuming the object type is allowed for promotion.

D. The promotion will not be allowed because objects exported from a previous environment cannot be promoted.

correct_answer = "C"

SAS Data Integration Developer for SAS 9

Item 1

Which of the following servers is NOT a part of the platform for SAS Business Analytics server tier?

A. SAS Metadata Server

B. SAS Workspace Server

C. SAS/CONNECT Server

D. SAS Content Server

correct_answer = "D"

Item 2

Which products are needed on the local host in order to access data from an MS Access Database using an ODBC Data Source name?

A. SAS/ACCESS interface to DSN

B. SAS/ACCESS interface to MDB

C. SAS/ACCESS interface to PC Files

D. SAS/ACCESS interface to ODBC

correct_answer = "D"

Item 3

Which statement is true regarding external files?

A. External file objects are accessed with SAS INFILE and FILE statements.

B. External files contain only one record per line.

C. External files can be used as input but not as outputs in SAS Data Integration Studio jobs.

D. SAS can only work with Blank, Comma, Semicolon and Tab as delimiters in external files.

correct_answer = "A"

Page 10: SAS Samplepaper Website

7/30/12 SAS Global Certification program

10/12support.sas.com/certify/creds/samples.html#bp

Item 4

Within SAS Data Integration Studio's SQL Join transformation, the option to turn on debug is located in which Properties pane?

A. Select Properties

B. Create Properties

C. SQL Join Properties

D. Job Properties

correct_answer = "C"

Item 5

Which SAS Data Integration Studio reports, generated as external files, can be stored as document objects within metadata?

A. only job reports

B. only table reports

C. both job reports and table reports

D. No reports can be stored as document objects.

correct_answer = "C"

Item 6

You want to create a job to extract only the rows that contain information about female employees from a table that contains information aboutboth male and female employees. The new table should have observations in ascending order of age. Refer to the job flow diagram in the exhibit.Where would you set the options to filter and sort the data?

A. Where tab and Group By tab

B. Where tab and Order By tab

C. Where tab and Parameters tab

D. Group By tab and Parameters tab

correct_answer = "B"

Item 7

Within SAS Data Integration Studio's Table Loader transformation, which load style choice does NOT exist?

A. Delete where

B. Append to Existing

C. Replace

D. Update/Insert

correct_answer = "A"

Item 8

In SAS Data Integration Studio, a business key can be defined in the properties of which transformation?

A. Data Validation

B. SQL Join

C. Lookup

D. SCD Type 2 Loader

correct_answer = "D"

SAS BI Content Developer for SAS 9

Item 1

When opening a registered SAS data file into a Microsoft Excel Worksheet, a user has the option to sort the data.

Which application performs the sort and where does the sort occur?

A. SAS performs the sort on the server.

B. SAS performs the sort on the local machine.

C. Excel performs the sort on the server.

D. Excel performs the sort on the local machine.

correct_answer = "A"

Item 2

When can you add a stored process as a data source to an information map?

A. anytime

B. when at least one table is selected as a data source

C. when at least one OLAP cube is selected as a data source

D. once an application server has been selected

correct_answer = "B"

Item 3

Refer to the exhibit.

A SAS.IdentityGroups filter has been created in SAS Information Map Studio. There is a data item called "Group" that contains different metadatagroups.

Page 11: SAS Samplepaper Website

7/30/12 SAS Global Certification program

11/12support.sas.com/certify/creds/samples.html#bp

If the "Group" filter is applied to the map, how will it affect the data?

A. All rows will be returned for any group that the user is a member of.

B. Only rows that belong to the first group are returned.

C. All rows will be returned for PUBLIC group only.

D. All rows matching the group identity login are returned.

correct_answer = "A"

Item 4

A SAS data set is used as a data source for a SAS BI Dashboard data model.

Which type of code do you write to query the data?

A. DATA Step

B. PROC SQL

C. a SQL/JDBC query

D. MDX

correct_answer = "C"

Item 5

Refer to the exhibit.

What causes this error message when executing a stored process?

A. Stored process code cannot be a .TXT file.

B. The stored process server is not running.

C. The file that contains the stored process code is not in the specified location.

D. An administrator deleted the stored process from the metadata.

correct_answer = "C"

Item 6

In a stored process, when using a range prompt named DateRange, which macro variables would you use in your SAS code?

A. DateRange_START and DateRange_FINISH

B. DateRange_BEGIN and DateRange_END

C. DateRange_MIN and DateRange_MAX

D. DateRange0 and DateRange1

correct_answer = "C"

Item 7

Upon initial install, all of the capabilities in the 'Web Report Studio: Report Creation' role are also included in which role?

A. Web Report Studio: Report Viewing

B. Web Report Studio: Advanced

C. Web Report Studio: Content Management

D. Web Report Studio: Administration

correct_answer = "B"

Item 8

A content developer would like to create a group of cascading prompts to use in multiple reports without recreating the prompts for each report.

What features of the prompt framework must the developer use?

A. Cannot create shared cascading prompts for use in multiple reports.

B. Dynamic Prompts and Shared Prompts

C. Cascading Prompts and Standard Groups

D. Cascading Prompts, Standard Groups, and Shared Prompts

correct_answer = "D"

Item 9

A SAS Information Map with a SAS OLAP Cube as a data source can be built from which of the following?

A. multiple SAS OLAP Cubes

B. a SAS OLAP Cube and a stored process

C. one table joined with one SAS OLAP Cube

D. one SAS OLAP Cube only

correct_answer = "D"

Item 10

Which statement is true regarding connection profiles used with the SAS platform applications?

A. Each SAS platform application must have its own connection profile.

B. Connection profiles are stored on the server machine.

C. Connection profiles are stored on the machine where the SAS application is installed.

D. All SAS platform applications share one connection profile.

correct_answer = "C"

Contact Us | Sitemap | RSS Feeds | w w w .sas.com | Terms of Use & Legal Information | Privacy Statement

Page 12: SAS Samplepaper Website

7/30/12 SAS Global Certification program

12/12support.sas.com/certify/creds/samples.html#bp

Copyright © 2012 SAS Institute Inc. All Rights Reserved.