SAS Institute A00-215 SAS 9.4 Programming Fundamentals Exam Online Training
SAS Institute A00-215 Online Training
The questions for A00-215 were last updated at Nov 22,2024.
- Exam Code: A00-215
- Exam Name: SAS 9.4 Programming Fundamentals Exam
- Certification Provider: SAS Institute
- Latest update: Nov 22,2024
Which step temporarily assign a format to the sales variable?
- A . Proc format; Formatsales comma12.; Run;
- B . Data sasuer. Shoes Set sashelp,sheoes; Format sales comma12.;
- C . Proc contents data=sashelp.shoes; Format Sales comma12.; Run;
- D . Proc print data= sashelp. Shoes Format sales comma12.; Run;
Which PROC PRINT option displays variable labels in the report?
- A . SHOWLABELS
- B . COLS
- C . LABELS=
- D . LABEL
You submit a program and the SAS log is shown below:
Which statement is true regarding the submitted program?
- A . The error in the PROC SORT step caused the program to stop processing
- B . All three steps ran successfully
- C . The DATA step and PROC PRINT steps ran without errors.
- D . The PROC SORT and PROC PRINT steps failed.
The data set Snacks contains three variables (productName, Flavor, and Price).
Given the program shown below:
What is the type and length of SnackType?
- A . Numeric, 8
- B . Character, 7
- C . Character, 8
- D . Character, 5
Which statement is true regarding variable names?
- A . Variable names are case sensitive.
- B . Variable names are from 1 to 32 characters in length.
- C . Variable names are optional when you create a data set
- D . Variable names can start with a number or an underscore
Which PROC SORT option allows you to create an output data set of the sorted data?
- A . Data=
- B . SORTOUT=
- C . OUTPUT=
- D . OUT=
Given the following code:
Which variables are created with the BY statement?
- A . State. First and State. Last
- B . First. State and Last. State
- C . First_State and Last_State
- D . First. and Last.
Given the display of the CITIES data set:
Which program creates the PROC PRINT report below?
- A . proc print data=cities showlabelse; label Name= ‘ Employee Name City =Birth City
- B . proc print data-cities label noobs; label Name=’Employee Name’ City=’ Birth City’; run;
- C . proc print data=cities; Name=’ Employee Name’; City=’Birth City’; run;
- D . options noobs labels; proc print data=cities; display Name=’ Employee Name* city=’Birth City’, run;
Which statements read the input data set SASHELP. SHOES and create the output data set WORK. TOTAL?
- A . data sashalp.shoes; out work.total;
- B . data sashelp.shoes; output work.total;
- C . data work.total; set sashelp.shoes;
- D . data out=work.total; input sasholp.shoes
The sashelp. class data set has 19 observations.
Given the frequency information about the Age, shown below:
How many observations are written to output data set when the following code is submitted?
- A . preteen will have 7 observations and teen will have 19 observations
- B . preteen will have 7 observations and teen will have 12 observations
- C . preteen will have 26 observations and teen will have 31 observations
- D . preteen will have 10 observations and teen will have 9 observations