Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The SAS data set Fed. Banks contains a variable Open_Date which has been assigned a permanent label of Open Date. Which SAS program temporarily
The SAS data set Fed. Banks contains a variable Open_Date which has been assigned a permanent label of "Open Date". Which SAS program temporarily replaces the label "Open Date with the label "Starting Date" in the output? A. proc print data=SASUSER. HOUSES label; label Open Date "Starting Date"; run; O B. proc print data=SASUSER. HOUSES label; label Open_Date="Starting Date"; run; O C. proc print data=SASUSER. HOUSES; label Open_Date="Starting Date"; run; proc print data=SASUSER. HOUSES; Open_Date="Starting Date"; run; Suppose you do not specify the LIBRARY= option and your formats are stored in Work. Formats. How long do they exist? A. only for the current procedure B. only for the current DATA step O C. only for the current SAS session D. permanently Which TITLE statement would display JANE'S DOG as the text of the title? A. title "JANE"S DOG"; B. title 'JANE'S DOG'; C. title "JANE'S DOG"; D. title 'JANE' ''S DOG'; You can place the FORMAT statement in either a DATA step of a PROC step. What happens when you place it in a DATA step? A. You temporarily associate the formats with variables. B. You permanently associate the formats with variables. C. You replace the original data with the format labels. D. You make the formats available to other data sets. Shown below are date and time expressions and corresponding SAS datetime informats. Which date and time expression cannot be read by the informat that is shown beside it? A. 30May2018:10:03:17.2 DATETIME20 B. 30May18 10:03:17.2 DATETIME18 C. 30May2018/10:03 DATETIME15 D. 30May2018/1003 DATETIME14
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started