| Other SAS Interview Questions |
| |
| Question | Asked @ | Answers |
| |
| CHOOSE ANY ONE OF THE PROCEDURE FOLLOWING TO GENERATE THE
REPORTS? HOW CAN YOU SAY IT IS BETTER THAN THE OTHER?
AND DEFERENCIATE THESE TWO ?
1). REPORT PROCEDURE
2). TABULATE PROCEDURE
| CybAge | 2 |
| How do you read in the variables that you need? | Accenture | 6 |
| WHAT IS LAG FUNCTION ? WHERE CAN YOU IMPLEMENT THIS
FUNCTION? | Zensar | 2 |
| How do you add a number to a macro variable? | | 3 |
| 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.
| | 1 |
| what are the differences between proc report and proc
tabulate? | | 1 |
| what is the difference between compiler and interpreter?
give any one example (software product) that act as a
interpreter? | Accenture | 13 |
| what is the diff b/w verification validation in sas | SAS | 3 |
| How do you put an elephant in the refrigerator? | Oracle | 4 |
| how can u extract,transform and loading? | CitiGroup | 2 |
| Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain. | Accenture | 4 |
| what is the difference between proc report and proc format? | CTS | 5 |
| What is the difference between verification and validation? | Oracle | 6 |
| Name and describe three SAS functions that you have used, if
any? | Accenture | 3 |
| DATA ABC;
INPUT TDATE DATE9. AVG;
CARDS;
18APR2008 150.00
19APR2008 167.00
20APR2008 123.00
21APR2008 145.00
;
RUN
HOW CAN I FIND THE DIFFERENCE BETWEEN AVG OF 18APR2008 ANF
21APR2008??
IF ANY ONE GETS IT PLS TRY TO POST IT. | Verinon-Technology-Solutions | 7 |
| Which is the best training institute for SAS in hyderabad. | | 15 |
| I am having a stored process.it needs to route my report to
both hthml and Xls.By default SP routes to html.I used the
PRINTTO to route the html to Xls.BUt it createsthe file not
but no content was written to file(0KB)?how can i do it? | | 1 |
| what is SAS/Graph? | CitiGroup | 1 |
| If reading a variable length file with fixed input, how
would you prevent SAS from reading the next record if the
last variable didn?t have a value? | | 3 |
| How did you use the round function?give an example(don't
say it will round to the nearest intger) eg1:round(84.55,.1)
=84.6 eg2:round(92.64,.1)=92.6,How it is happening like
this tell me the logic,that is how the round function works
when we have deimal values? | BoA | 2 |
| |
| For more SAS Interview Questions Click Here |