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;



In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1..

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

Post New Answer

More SAS Interview Questions

Explain the main difference between the sas procedures and functions? : Sas-administrator

0 Answers  


What is the maximum and minimum length of macro variable

0 Answers  


how to perform paired t-test using Base/SAS & SAS/Stat?

2 Answers  


What is the purpose of _character_ and _numeric_?

0 Answers  


What are the 3 components in sas programming?

0 Answers  






Difference b/n proc means and proc summary procedures?

3 Answers   Accenture,


what is the difference between floor and ceil functions in sas? : Sas-administrator

0 Answers  


what are some differences between proc summary and proc means? : Sas programming

0 Answers  


WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.

4 Answers   Genzyme,


Can anyone help to find a statement to get all the predefined formats?

3 Answers   Verinon Technology Solutions,


what is the main difference between rename and label? (don't say that they both perform the same function).

11 Answers   Parexel,


WHAT IS DEBUGGING? HOW TO TEST THE DEBUGGING IN SAS?

3 Answers   Accenture,


Categories