Valid A00-231 Dumps shared by ExamDiscuss.com for Helping Passing A00-231 Exam! ExamDiscuss.com now offer the newest A00-231 exam dumps, the ExamDiscuss.com A00-231 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com A00-231 dumps with Test Engine here:
Scenario: This project will use data set cert.input13. At any time, you may save your program as program13 in cert\programs. This data set contains 1001 observations and 2 variables: * Date1, a numeric variable representing an unformatted SAS date value. Example: 12001. * Charnum, a character variable representing a monetary amount. Example: $50,000. Write a SAS program that will: * Save the new data set as results.output13. * Create a new variable Chdate that converts the datel variable to a character variable that is in the format ddmonyyyy, such as 11NOV1992. * Create a new variable num1 that converts the Charnum variable to a numeric variable. What is the value ofChdatefor observation 52?
Correct Answer:
30DEC1992 Explanation: data results.output13; set cert.input13; Chdate=put(date 1,date9.); num 1=input(Charnum,dollar7.); run; proc print data=results.output13 (firstobs=52 obs=52); run;