SAS Programming Fundamentals (A00-215) Certification Exam Sample Questions

A00-215 Dumps Free, A00-215 PDF Download, SAS Programming Fundamentals Dumps Free, SAS Programming Fundamentals PDF Download, A00-215 Free DownloadHere are the sample questions which will help you be familiar with SAS Certified Associate - Programming Fundamentals Using SAS 9.4 (A00-215) exam style and structure. We encourage you to try our Demo SAS Programming Fundamentals Certification Practice Exam to measure your understanding of exam structure in an environment which simulates the SAS Programming Fundamentals Associate Certification test environment.

To make your preparation more easy for SAS Programming Fundamentals Associate (A00-215) exam, we strongly recommend you to use our Premium SAS Programming Fundamentals Certification Practice Exam. According to our survey with certified candidates, you can easily score 85% in your actual SAS Certification exam if you can score 100% in our premium SAS Programming Fundamentals Certification practice exams.

SAS A00-215 Sample Questions:

01. Which statement is true regarding PROC IMPORT?
a) By default, PROC IMPORT overwrites an existing SAS data set.
b) PROC IMPORT writes SAS data to a CSV file.
c) Dates are imported as character values.
d) The DBMS= option identifies the type of data to import.
 
02. Which two actions occur during the execution phase?
(Choose two.)
a) An observation from the input data set is read into the PDV.
b) The descriptor portion is created.
c) The PDV is initialized.
d) The program is checked for syntax errors.
 
03. Given the program below:
data strings;
str="What day is it?";
pos=find(str,'day');
run;
What numeric value is assigned to the variable pos when the program executes? __
Enter your numeric answer in the space above.
a) 6
b) 4
c) 2
d) 8
 
04. Given the SAS program shown below:
title1 "Last Year’s Standings”;
title2 “Excludes preseason”;
proc print data=football;
run;
title1;
title2 “Includes preseason”;
proc print data=football2;
run;
What title appears on the second PROC PRINT report?
a) Last Year’s Standings
Includes preseason
b) Last Year’s Standings
Excludes preseason
c) "This line is blank."
Includes preseason
d) "This line is blank."
Excludes preseason
 
05. Which statement is true about the code shown below?
data revenue;
merge sales(in=sold) stock;
by productID;
if sold;
run;
a) Only columns from sales are in revenue.
b) Only rows with information from sales are in revenue.
c) Only columns from stock are in revenue.
d) Only rows with information from stock are in revenue.
 
06. What is the value of x2 in the NUMS data set?
data nums;
x=7.56;
x2=int(x);
run;
a) 7.5
b) 7
c) 8
d) 7.56
 
07. Which statement is true regarding variable names?
a) Variable names are from 1 to 64 characters in length.
b) Variable names must be in all lower case.
c) Variable names can start with a number.
d) Variable names can end with a number.
 
08. Which ends a step?
a) a RUN statement
b) an END statement
c) an ENDSTEP statement
d) a semicolon
 
09. Which two statements are true regarding the KEEP and DROP statements?
(Choose two.)
a) They can be placed anywhere in the DATA step.
b) They affect all data sets that are being created.
c) They can be used in PROC steps.
d) They control the order of the variables in the output data set.
 
10. Given the SAS log shown below:
199 dat students;
---
14
WARNING 14-169: Assuming the symbol DATA was misspelled as dat.
200 set sashelp.class;
201 ratio=height/weight;
202 run;
NOTE: There were 19 observations read from the data set SASHELP.CLASS.
NOTE: The data set WORK.STUDENTS has 19 observations and 6 variables.
203
204 proc means data=students;
205 class sex;
206 var ratio;
207 run;
NOTE: There were 19 observations read from the data set WORK.STUDENTS.
Which statement is true?
a) The PROC MEANS step failed.
b) The DATA step failed.
c) The DATA step and PROC MEANS step executed.
d) The program stopped processing after the DATA step.

Answers:

Question: 1 Answer: d Question: 2 Answer: a, c
Question: 3 Answer: a Question: 4 Answer: c
Question: 5 Answer: b Question: 6 Answer: b
Question: 7 Answer: d Question: 8 Answer: a
Question: 9 Answer: a, b Question: 10 Answer: c

Note: Please write us on feedback@analyticsexam.com if you find any data entry error in these SAS Programming Fundamentals Associate (A00-215) sample questions.

Rating: 5 / 5 (75 votes)