In the following DATA step, what is needed for ‘fraction’ to
print to the log? data _null_; x=1/3; if x=.3333 then put
‘fraction’; run;
Answer / henry
data precise;
x=1/3;
if round(x,0.0001)=.3333 then put 'fraction';
else put 'not fraction';
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Describe crosslist option in tables statement?
what are the component of range? : Sas-bi
How to convert a given date value into SAS date
9 Answers CitiGroup, Quintiles,
Explain the difference between using drop = data set option in set and data statement?
Tell me about % include and % eval? : sas-macro
For what purposes have you used sas macros? : sas-macro
How do you use the do loop if you don’t know how many times you should execute the do loop?
"What is the difference between proc sort nodup and proc sort nodupkey?"
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
Hi Friends, Am Priya,new to your forum. am looking for Interview questions on SAS Platform Administration. I searched everywhere but I couldn't find them,please can anyone help me with complete interview questions normally everyone will face in the interviews on SAS Administration. am really facing problems in the interviews,am not able to answer any of their questions. I would really appreciate all your help if you can email the complete Interview Questions to priyafeb84@gmail.com Kindly awaiting for your reply with eager
how will you locate the sas platform applications? : Sas-bi
State the difference between INFORMAT and FORMAT ?