Back to Tech Corner
SAS Programming

(Oct 24) SAS Programming Quiz

Question 1

Which of the following is the correct way to read data from a CSV file into a SAS dataset?

Question 2

In SAS, the DATA step is used to define and modify datasets, while PROC steps are used to analyze and process data.

Question 3

What does the following SAS code do?

DATA newdata;
  SET olddata;
  WHERE age > 30;
RUN;

Question 4

Which function would you use to convert a character variable to a numeric variable in SAS?

Question 5

The PROC MEANS procedure in SAS can be used to calculate the average, minimum, and maximum of numeric variables.