Week1-Sample Quizzes PDF

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

PHST 620

Week1_Sample Quizzes
Choose the correct answer. Only one choice is correct. You are NOT
allowed to use the internet. However, you can access the Blackboard.
1.
The following SAS procedure step generates a new data set:

DATA EXAMPLE1;
SET sasuser.Exam;
RUN;

In which library is the new data set stored?


A. WORK
B. EXAMPLE1
C. EXAM
D. SASUSER
2.
How many observations are generated from this data step?
DATA EXAMPLE2;
INPUT X Y @@;
DATALINES;
10 23 35 1 35 46 25 56
34 46 7 8
;
RUN;
PROC PRINT DATA=EXAMPLE2;
RUN;
(A) 2 (B) 12 (C) 6 (D) 4

3.
Which of the following SAS Data name is NOT valid?
(A) DATA (B) WeeK1 (C) _PHST620 (D) 2019_UofL

You might also like