Question 65 The following SAS program is submitted:

 data work.AreaCodes;    Phonenumber=3125551212;    Code='('!!substr(Phonenumber,1,3)!!')';run;

 Which one of the following is the value of the variable Code in the output data set?

  1. (  3)
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material

 Ans :1

 Exp : An automatic data conversion is performed whenever a numeric variable is used where SAS expects a character value. The numeric variable is written with the BEST12. format and

 the resulting character value is right-aligned when the conversion occurs.

You can access to full explanation to question and answer from this page.