SAS Interview Questions
Questions Answers Views Company eMail

What are SAS/ACCESS and SAS/CONNECT?

619

How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?

736

Do you need to know if there are any missing values?

586

What do the PUT and INPUT functions do?

767

Which date function advances a date, time or datetime value by a given interval?

656

Approximately what date is represented by the SAS date value of 730?

732

How do you control the number of observations and/or variables read or written?

731

In ARRAY processing, what does the DIM function do?

697

How would you determine the number of missing or nonmissing values in computations?

640

What are the functions used for character handling?

630

What is proc sort?

710

explain the difference between proc means and proc summary?

654

Mention the difference between ceil and floor functions in sas?

632

How to include or exclude specific variables in a data set?

629

What is substr function?

610


Post New SAS Questions

Un-Answered Questions { SAS }

Differentiate between ceil and floor functions.

647


explain the function of substr in sas? : Sas-administrator

543


How do you debug and test your SAS programs?

1034


What is PDV?

713


If money were no object, what would you like to do?

2676






How necessary is it to be creative in your work?

2008


What is the use of divide function?

587


why is sas considered self-documenting? : Sas programming

670


If you use a symput in a data step, when and where can you use the macro variable? : sas-macro

596


Compare sas with other data analytics tools.

570


what does the run statement do? : Sas programming

544


Mention what is SAS data set?

662


what is PhaseIII, ODS, TLG, Macro and Proc in SAS

3887


how does sas handle missing values in assignment statements? : Sas programming

563


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.

1787