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...

Does anybody has lastest SAS certification dumps,if anybody
has please mail me at akshara_SAS@ymail.com

Thanks
Akshara

Answer Posted / guest

Check these links for some SAS Certification questions...
http://sastechies.blogspot.com/2010/01/base-sas-certification-questions.html for BaseSAS Certification Questions...

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how do you test for missing values? : Sas programming

1098


how does sas handle missing values in a merge? : Sas programming

1098


Give some examples where proc report’s defaults are same as proc print’s defaults?

1163


what is snowflake schema? : Sas-di

1262


Describe the function and untility of the most difficult SAS macro that you have written.

2274


Intern stastical programmer written test

790


what is the basic structure sas administrator? : Sas-administrator

1056


Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?

2306


What is a put statement?

1271


AE datasets names? how many types?

2559


what do the mod and int function do? What do the pad and dim functions do? : Sas programming

1224


what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming

1147


How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?

2514


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

2245


Explain input and put function?

1186