Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

SAS 1. Which of the following is FALSE regarding SAS data libraries? a. SAS data sets saved in the WORK library are saved at the

SAS

1. Which of the following is FALSE regarding SAS data libraries?

a. SAS data sets saved in the WORK library are saved at the end of every SAS session.

b. The WORK library is the default SAS library.

c. Library names must be 8 characters or fewer.

d. A two-level data set name can be used to access data sets stored in libraries other than the default SAS library.

2. Which of the following symbol(s) is used in the INPUT statement to tell SAS that an observation continues on to the next line?

a. : (a colon)

b. / (a forward slash)

c. ; (a semi-colon)

d. @@ (double at signs)

3. Which of the following SAS programs would NOT create a SAS data set consisting only of observations with the variable color equal to red?

a. DATA favorites (WHERE=(color='red'));

SET class;

RUN;

b. DATA favorites;

SET class;

IF color = 'red';

RUN;

c. All of these programs create a SAS data set consisting only of observations where color is equal to red.

d. PROC PRINT DATA=class;

WHERE color='red';

RUN;

4. Which of the following is a numeric informat in SAS?

a. ANYDTDTE10.

b. 5.2

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions