READ Free Dumps For SAS Institute- A00-211
Question ID 20372 | Given the following raw data records in DATAFILE.TXT: Which output is correct based on the submitted program? |
Option A | Option A |
Option B | Option B |
Option C | Option C |
Option D | Option D |
Correct Answer | C |
Question ID 20373 | Given the SAS data set WORK.ORDERS: The variable Order_id is numeric; Customer is character; and Ship_date is a numeric containing a SAS date value. "Order 9341 shipped on 02FEB2009". |
Option A | note=catx(' ','Order',order_id,'shipped on',input(ship_date,date9.)); |
Option B | note=catx(' ','Order',order_id,'shipped on',char(ship_date,date9.)); |
Option C | note=catx(' ','Order',order_id,'shipped on',transwrd(ship_date,date9.)); |
Option D | note=catx(' ','Order',order_id,'shipped on',put(ship_date,date9.)); |
Correct Answer | D |