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

SAS Interview Questions
Questions Answers Views Company eMail

what is information maps?

CitiGroup,

2164

how to intersect the tables by using PROC MIXED?

CitiGroup,

1 8101

How the date 04oct1994 is stored in SAS,not only give the answer explain in brief?

5 8005

Approximately what date is represented by SAS date value of 730

9 21289

how we can create optional or required parameters in SAS macro...

TCS,

5 23181

1.What is the difference between _NULL_ , _ALL_, and _N_? 2.What are the uses of _NULL_ using in Data Steps? Can we _NULL_ in Proc Steps also? 3.How do call the macro variable in Data Steps? 4.How to construct Pivot tables in Excel Using SAS?

3 10149

is there any difference between proc summary and proc means?

3 8986

what are the differences between proc report and proc tabulate?

3 20731

is there any differnce between proc means and proc summary?

5 9182

1.How to draw pivot tables in Excel by using SAS and in which version we can use VB script for to draw pivot tables in Excel? Answer with example data. 2.What are the advantages of _NULL_ in Data steps? Can we use _NULL_ in Proc steps also? 3. How to call the macro variable into Data Steps? 4. Can we draw pivot tables in Excel using Proc SQL? Please post answers for the above questions with suitable examples, and how to use VB script for Excel using SAS.

1 8394

1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.

1 5070

how do u test a pros sql(works or not) without executing it?

DELL, HSBC,

1 11105

what is the difference btw proc means and proc univariate?

HSBC, TCS,

8 51579

What is difference between rename and lable in sas?

Satyam,

10 31201

how do you validate sas program?

Accenture,

6 13742


Post New SAS Questions

Un-Answered Questions { SAS }

Explain the purpose of substr functions in sas programming.

1017


How will you generate test data with no input data?

1120


where are dashboard components are created and maintained? : Sas-bi

980


How to create a permanent sas data set?

1149


What is the maximum and minimum length of macro variable

1180


What are the ways to do a “table lookup” in sas?

986


what has been your most common programming mistake? : Sas programming

1043


Did you used proc test? when?

1991


what is factor analysis? : Sas-administrator

1035


explain about data integrator metadata reports? : Sas-di

1046


How to convert a numeric variable to a character variable?

1149


How to read an input file in sas?

1102


What are the difference between ceil and floor functions in sas?

1288


What is the difference between order and group variable in proc report?

1378


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.

2168