What are the features of SAS?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More SAS Interview Questions

What are the 3 components in sas programming?

0 Answers  


Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables?

3 Answers  


how many types of MERGE?

17 Answers   CitiGroup,


What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;

3 Answers  


For what purpose(s) would use the RETURN statement?

1 Answers  






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

1 Answers   TCS,


what are some good sas programming practices for processing very large data sets? : Sas programming

0 Answers  


how sas deals with business intelligence? : Sas-bi

0 Answers  


libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak

7 Answers  


what is hash files in sas and why we are using this one in sas?

0 Answers   L&T, SAS,


How would you code the criteria to restrict the output to be produced?

9 Answers  


what is the need of INDEX in datasets?

6 Answers   CitiGroup,


Categories