Which of the following is not created during compilation
phase?

Answers were Sorted based on User's Feedback



Which of the following is not created during compilation phase?..

Answer / santoshi

the answer is 2.first observation

Is This Answer Correct ?    22 Yes 0 No

Which of the following is not created during compilation phase?..

Answer / pdhokriya

1.Dataset descriptor
2.first observation
3.PDV
4._N_ and _error_ atomatic variable


Is the answer is 1.dataset descriptor

Is This Answer Correct ?    7 Yes 12 No

Post New Answer

More SAS Interview Questions

what are different analysis datasets you created and what are the new variables created

2 Answers   Sciformix,


what are scrubing procedures in SAS?

1 Answers   Oracle,


What's the difference between VAR A1 - A4 and VAR A1 - A4?

1 Answers   Quintiles,


if you have 365 no of data set and each one having different variable from each other. how will you read by creating macros and create a single data set.

2 Answers  


How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?

1 Answers   Quintiles,






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 Answers  


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

0 Answers  


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

0 Answers  


What are all the problems you faced while validating tables and reports?

0 Answers   Accenture, Quintiles,


Explain the purpose of substr functions in sas programming.

0 Answers  


what are the different ways of merging two datasets.name atleast 4.

2 Answers  


How are numeric and character missing values represented internally?

0 Answers   Quintiles,


Categories