SAS Interview Questions
Questions Answers Views Company eMail

In the SAS Data step what is the difference between the subsetting done by Where and subsetting done by If?

Cognizant,

6 18914

What are the joins,types of joins and thier functions?

SAS,

7 12357

We want to merge file A and B. File A has variable age, file B provide birthdate. How to merge the data according to age in file B

3 6156

Which are SAS Windows Clients & SAS Java Clients

TCS,

3 9095

How can a SAS WEB REPORT STUDIO USER identify which report tabs they have been permitted without entering the SAS WEB REPORT STUDIO

TCS,

2 10720

how does sas know on which server the piece of code to be executed ? say if a proc olap code is written then how the sas application would detect on which server to execute.

TCS,

1 6024

What is SAS Information Map Studio and its purpose ?

SAS, TCS,

2 15047

what are different type of sas servers ? On which server does the sas code execute ?

TCS,

4 13742

what is incremental update ? is this possible in SAS OLAP CUBE STUDIO.

TCS,

1 9511

HOW DO WE CREATE A SAS STORED PROCESS IN SAS EG ?

TCS,

1 12636

what is SAS ACCESS AND SAS CONNECT ? Give an example and data statements used.

TCS,

1 6281

what are system option ? give few examples ? what are dataset options and dataset statements ? if there is a keep option and keep statement ? which one is executed first ? Difference between a WHERE statement and IF statement ? what is the advantage of using WHERE statement option on the dataset ?

Satyam,

1 6333

WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?

Satyam,

2548

name few built in sas transformation in DI studio ?

SAS,

4 20037

what are the methods that you would employ to fine tune your SQL extract process using SAS/Access or Proc SQL?

1 4892


Post New SAS Questions

Un-Answered Questions { SAS }

Which function is used to count the number of intervals between two sas dates?

863


what are sas bi dashboard components? : Sas-bi

883


What are the special input delimiters used in SAS?

880


What is the use of PROC gplot?

884


what is business intelligence? : Sas-bi

813


what is sas database server? : Sas-di

826


What is the order of application for output data set options, input data set options and SAS statements?

1310


what is sas enterprise intelligence architecture? : Sas-bi

763


what are the scrubbing procedures in sas? : Sas programming

1065


If you could design your ideal job, what would it look like?

2707


How many data types are there in SAS?

818


what is metadata? : Sas-bi

806


what versions of sas have you used (on which platforms)? : Sas programming

818


what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming

844


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.

2038