Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the basic syntax style in SAS?

1228


How to read an input file in sas?

1192


describe about physical data integration? : Sas-di

1096


explain the proc in sas? : Sas-administrator

1132


explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di

1143


how can you put a "trace" in your program? : Sas programming

1113


which date function advances a date, time or datetime value by a given interval? : Sas programming

1097


What is the use of the %include statement?

1215


what are informats in sas? : Sas-administrator

1150


what is enterprise guide? What is the use of it? : Sas programming

1068


How to specify variables to be processed by the freq procedure?

1118


How to limit decimal places for the variable using proc means?

1120


name several ways to achieve efficiency in your program? : Sas programming

1142


Name types of category in which SAS Informats are placed?

1196


what does the run statement do? : Sas programming

1102